.htaccess issue - Please Help |
[eluser]Blues Clues[/eluser]
I have the following .htaccess file in my installation and still not able to eliminate index.php in my links... ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ .htaccess settings ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ RewriteEngine on RewriteCond $1 !^(index\.php|images|css|js|robots\.txt|favicon\.ico) RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^([^/\.]*)$ ./index.php/$1 [QSA] RewriteRule ^(.*)$ ./index.php/$1 [QSA] ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ config.php settings: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ $config['base_url'] = "http://localhost/codeigniter172/"; $config['index_page'] = ""; ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Problem: I am still not able eliminate index.php in my URLs...For example: http://localhost/codeigniter172/index.php/mainp/ loads my menu but http://localhost/codeigniter172/mainp/ fails with HTTP 404 error. Can somebody help with this? |
Messages In This Thread |
.htaccess issue - Please Help - by El Forum - 03-25-2010, 01:48 PM
.htaccess issue - Please Help - by El Forum - 03-25-2010, 02:26 PM
.htaccess issue - Please Help - by El Forum - 03-25-2010, 02:47 PM
.htaccess issue - Please Help - by El Forum - 03-25-2010, 06:19 PM
.htaccess issue - Please Help - by El Forum - 03-25-2010, 07:06 PM
|