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

[eluser]harmstra[/eluser]
Maybe that's how things are in theory.
This is how tings are on my server in real life

/test is a physical directory
Code:
RewriteCond %{HTTP_HOST} ^subdomain[NC]
RewriteRule ^(.*)$ http://www.onderdelenzoeker.com/test/$1 [QSA,L] #no change in address bar



/test is a NOT a physical dir, but a controller
Code:
RewriteCond %{HTTP_HOST} ^subdomain[NC]
RewriteCond %{REQUEST_URI} !^/index.php/test[NC] # to prevent loop
RewriteRule ^(.*)$ http://www.doamin.com/index.php/test/$1 [QSA,L] #address bar changes

So what's the difference? I think the problem is this

The code used for CI

Code:
RewriteCond $1 !^(index\.php|images|robots\.txt|src|ext)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [QSA]

In the first case, the dir exists, in de second it doesn't
So in the second case, the above RewriteRule will be executed, in the first case it won't.


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