CodeIgniter Forums
[SOLVED] URL Problem - 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: [SOLVED] URL Problem (/showthread.php?tid=27594)



[SOLVED] URL Problem - El Forum - 02-15-2010

[eluser]jamziee[/eluser]
Hello, i have used the .htaccess example on this site to hide index.php, i have used this befor and it has worked. But http://newgameshere.com/admin/ gose to the welcome page, but http://newgameshere.com/index.php/admin/ works :S


[SOLVED] URL Problem - El Forum - 02-15-2010

[eluser]jamziee[/eluser]
i found this on another site

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
</IfModule>

that works


[SOLVED] URL Problem - El Forum - 02-15-2010

[eluser]vitoco[/eluser]
please add "[SOLVED]" to the title in order to others don't waste time reading this issue


[SOLVED] URL Problem - El Forum - 02-15-2010

[eluser]jamziee[/eluser]
how?