![]() |
.htaccess problem - 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: .htaccess problem (/showthread.php?tid=8729) |
.htaccess problem - El Forum - 05-29-2008 [eluser]Mitja[/eluser] Code: RewriteEngine on i still need to write index.php in url adress. It is not recognized automatically. Anyone know why? .htaccess problem - El Forum - 05-29-2008 [eluser]GSV Sleeper Service[/eluser] remove one line, it should be Code: RewriteEngine on the [L] means last rule, stop processing. .htaccess problem - El Forum - 05-29-2008 [eluser]Mitja[/eluser] hmm thx but also not working. Do not understand why, i try everything but nothing works. .htaccess problem - El Forum - 05-29-2008 [eluser]MCrittenden[/eluser] I had the same problem with the .htaccess you posted. I tried this one as found the wiki article and it worked fine. Give it a shot. Code: <IfModule mod_rewrite.c> .htaccess problem - El Forum - 05-29-2008 [eluser]Mitja[/eluser] thx for wiki site. now works if i run http://localhost/bewoop/ but if i run http://localhost/bewoop/admin still not working and i must write http://localhost/bewoop/index.php/admin that start working Really no idea why .htaccess problem - El Forum - 05-29-2008 [eluser]Sean Murphy[/eluser] You have to set your RewriteBase to /bewoop/ |