CodeIgniter Forums
User Guide: Maybe a typo regarding "Removing index.php file"? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: User Guide: Maybe a typo regarding "Removing index.php file"? (/showthread.php?tid=6433)



User Guide: Maybe a typo regarding "Removing index.php file"? - El Forum - 02-27-2008

[eluser]caole261188[/eluser]
Hi, I've just discovered a potential typo here in this file: user_guide/general/urls.html
this line:
RewriteRule ^(.*)$ /index.php/$1 [L]
should be
RewriteRule ^(.*)$ index.php/$1 [L] (without the slash before index.php

Or may be the original version doesn't work for just me Smile


User Guide: Maybe a typo regarding "Removing index.php file"? - El Forum - 02-27-2008

[eluser]Pascal Kriete[/eluser]
The original assumes that you installed it to the root directory. So the third alternative would be /folder(s)/index.php/$1.


User Guide: Maybe a typo regarding "Removing index.php file"? - El Forum - 02-27-2008

[eluser]caole261188[/eluser]
Now I understood it. Thanks for your explanation Smile