I've been trying to remove the 'index.php' from my Codeigniter site using mod-rewrite. However I end up with this problem:
Original URI: http://mysite.com/index.php/about
Only way to make it work after removing index.php: http://mysite.com//about (note the extra slash)
Removing the extra slash causes Codeigniter to not 'see' the url string after the domain.
I've tried 3 different mod-rewrite methods now and all end up with the same problem - URIs don't work unless you add an extra slash after the domain name.
My current mod_rewrite code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteCond %{THE_REQUEST} !/system/.*
RewriteRule (.*?)index\.php/*(.*) /$1$2 [R=301,L]
RewriteCond $1 !\.(css|js|gif|jpe?g|png) [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
RewriteCond %{HTTP_HOST} ^www.domain.co
RewriteRule (.*) http://domainname.co/$1 [R=301,L]
</IfModule>