CodeIgniter Forums
URL rewrite - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: URL rewrite (/showthread.php?tid=21566)



URL rewrite - El Forum - 08-13-2009

[eluser]georgerobbo[/eluser]
I'm having real trouble with the Apache URL rewrite to remove index.php. I've followed exactly as documented in the user guide.

Code:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

I have the .htaccess file located in my root directory along with the systems folder and index.php


URL rewrite - El Forum - 08-13-2009

[eluser]Unknown[/eluser]
Try replacing the last line with this:
Code:
RewriteRule ^(.*)$ index.php?$1 [L]



URL rewrite - El Forum - 08-13-2009

[eluser]Rick Jolly[/eluser]
Just search the forums for htaccess.