CodeIgniter Forums
'welcome' not showing up as expected - 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: 'welcome' not showing up as expected (/showthread.php?tid=11196)

Pages: 1 2


'welcome' not showing up as expected - El Forum - 09-02-2008

[eluser]NateL[/eluser]
Thanks Randy. I'm on a shared server so that is information I cannot check. I am looking into another server right now to see if I can get more flexibility.

KaBaDaBrA, that gives me a 500 internal error.


'welcome' not showing up as expected - El Forum - 09-02-2008

[eluser]Randy Casburn[/eluser]
@phpoet -- We know mod_rewrite is working since he is not required to put index.php in his url...good thinking though.

Randy


'welcome' not showing up as expected - El Forum - 09-02-2008

[eluser]KaBaDaBrA[/eluser]
Hey again...

If there is another .htaccess file in the ROOT directory this could cause a conflict. The code that I use is:

Code:
RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ./index.php/$1 [L,QSA]

Works fine for me...

Also try setting your $config['index_page'] = "index.php/" and see if that works. If it works then its possible that the ROOT .htaccess file is causing conflict...

BUT I could be wrong...