I am using the following to remove my index.php in codeigniter -
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
I am replacing an old site with my new one written with codeigniter, because of this I need to rewrite some old urls to new ones. This is working fine for single pages, however I am running into a problem with the following rewrite -
RedirectMatch 301 ^/comments/(.*)/$ /location/$1
This should in theory redirect you from: http://www.mysite.com/comments/123 to http://www.mysite.com/location/123
Because I’m removing index.php through a rewrite I am ending up being directed to -
http://www.mysite.com/location/123?/comments/123/
Does anyone know how to fix this?
Thanks.
