Welcome Guest, Not a member yet? Register   Sign In
Period changed to underscore
#15

[eluser]Unknown[/eluser]
I just ran into this issue. It's pretty simple actually. If you are using friendly URLs, which you likely are, then you may go 2 routes in your .htaccess: index.php/something or index.php?/something. If you use the first, without the ?, it should work with AUTO or REQUEST_URI, if you use the second, it should work with QUERY_STRING. Personally, I wouldn't use the second, because it's in PHP's functionality to replace your dots (and more) with underscores.

In my case, I was using BOTH in my htaccess, a different one for each module in HMVC. It was pretty confusing at first, haha Wink

Code:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)admin(.*)$ index.php?/admin/$2 [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/blog/$1 [L]

One a query, the other not = problem.


Messages In This Thread
Period changed to underscore - by El Forum - 10-16-2008, 03:41 PM
Period changed to underscore - by El Forum - 10-16-2008, 04:45 PM
Period changed to underscore - by El Forum - 10-16-2008, 08:41 PM
Period changed to underscore - by El Forum - 10-17-2008, 08:48 AM
Period changed to underscore - by El Forum - 03-03-2009, 05:57 AM
Period changed to underscore - by El Forum - 03-03-2009, 09:31 AM
Period changed to underscore - by El Forum - 03-04-2009, 04:54 PM
Period changed to underscore - by El Forum - 03-04-2009, 05:05 PM
Period changed to underscore - by El Forum - 03-04-2009, 05:15 PM
Period changed to underscore - by El Forum - 03-04-2009, 05:21 PM
Period changed to underscore - by El Forum - 03-04-2009, 05:25 PM
Period changed to underscore - by El Forum - 03-04-2009, 05:28 PM
Period changed to underscore - by El Forum - 03-04-2009, 05:34 PM
Period changed to underscore - by El Forum - 07-12-2010, 07:33 AM
Period changed to underscore - by El Forum - 02-10-2011, 12:02 PM



Theme © iAndrew 2016 - Forum software by © MyBB