Fixing htaccess file to not use GET params anymore.

This commit is contained in:
mark_story 2011-02-20 13:57:38 -05:00
parent 23bacfc0c7
commit 2190596764

View file

@ -2,5 +2,5 @@
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule>