Welcome Guest, Not a member yet? Register   Sign In
Can't remove index.php from the url :/
#8

[eluser]LuckyFella73[/eluser]
Maybe try this one:
Code:
// .htaccess
<IfModule mod_rewrite.c>
    # Turn on the Rewrite Engine
    RewriteEngine On
    
    # If the file or directory exists, show it
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^(.+) - [PT,L]
    
    # Blank queries get sent to the index
    RewriteRule ^$ index.php [L]
    
    # All other queries get sent to the index as index.php/whatever
    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>

And set
Code:
// config.php
$config['index_page'] = "";
$config['uri_protocol']    = "AUTO";

Hope that helps ..


Messages In This Thread
Can't remove index.php from the url :/ - by El Forum - 12-07-2010, 08:31 AM
Can't remove index.php from the url :/ - by El Forum - 12-07-2010, 08:43 AM
Can't remove index.php from the url :/ - by El Forum - 12-07-2010, 08:54 AM
Can't remove index.php from the url :/ - by El Forum - 12-07-2010, 10:58 AM
Can't remove index.php from the url :/ - by El Forum - 12-07-2010, 01:25 PM
Can't remove index.php from the url :/ - by El Forum - 12-07-2010, 01:44 PM
Can't remove index.php from the url :/ - by El Forum - 12-08-2010, 05:51 AM
Can't remove index.php from the url :/ - by El Forum - 12-08-2010, 06:00 AM
Can't remove index.php from the url :/ - by El Forum - 12-09-2010, 07:30 AM



Theme © iAndrew 2016 - Forum software by © MyBB