Welcome Guest, Not a member yet? Register   Sign In
virtual subdomain with htaccess
#12

[eluser]Jelmer[/eluser]
Hi harmstra,

Saw your email but didn't have time to answer sooner.

The basic idea is that the rewriting of the subdomain to the directory is done from your root and that removing the index.php from the directory is done from the CI directory itself.

If we have a filesystem like this:
Code:
- http_docs (root)
| - subdomain
| | - .htaccess
| | - index.php
| - .htaccess

The .htaccess in the http_docs has the rewriting for the subdomain:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST}    ^subdomain.domain.com$
RewriteCond %{REQUEST_URI}  !^/subdomain/
RewriteRule (.*)            /subdomain/$1 [last]

And the .htaccess in the subdomain directory has the rewriting for the index.php file, for example:
Code:
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /index.php?/$1[QSA]


Messages In This Thread
virtual subdomain with htaccess - by El Forum - 04-23-2009, 09:08 AM
virtual subdomain with htaccess - by El Forum - 04-23-2009, 09:12 AM
virtual subdomain with htaccess - by El Forum - 04-23-2009, 09:46 AM
virtual subdomain with htaccess - by El Forum - 04-23-2009, 10:03 AM
virtual subdomain with htaccess - by El Forum - 04-23-2009, 10:43 AM
virtual subdomain with htaccess - by El Forum - 04-23-2009, 11:35 AM
virtual subdomain with htaccess - by El Forum - 04-23-2009, 12:09 PM
virtual subdomain with htaccess - by El Forum - 04-23-2009, 01:18 PM
virtual subdomain with htaccess - by El Forum - 04-26-2009, 08:44 AM
virtual subdomain with htaccess - by El Forum - 04-26-2009, 09:28 AM
virtual subdomain with htaccess - by El Forum - 04-26-2009, 11:19 AM
virtual subdomain with htaccess - by El Forum - 04-29-2009, 04:26 AM
virtual subdomain with htaccess - by El Forum - 04-29-2009, 04:44 AM
virtual subdomain with htaccess - by El Forum - 04-29-2009, 05:05 AM
virtual subdomain with htaccess - by El Forum - 04-29-2009, 05:20 AM
virtual subdomain with htaccess - by El Forum - 04-29-2009, 07:39 AM



Theme © iAndrew 2016 - Forum software by © MyBB