Welcome Guest, Not a member yet? Register   Sign In
.htaccess to remove /index/ action from URL
#5

[eluser]Flemming[/eluser]
Ahh OK I think I'm with you! First you need to look in application > config > config.php and edit the line :

Code:
$config['index_page'] = "index.php";
remove 'index.php'

Then you will need to use something like this in your .htaccess

Code:
RewriteCond $1 !^(index\.php|index\.html|assets.*|robots\.txt)
RewriteRule ^(.*)$ /index.php?/$1 [L]

depending on your server you may or may not need the ? after index.php

I hope that is what you were looking for?

Edit: and of course n0xie is right - it automatically goes to the index method if no method is supplied in your url!


Messages In This Thread
.htaccess to remove /index/ action from URL - by El Forum - 09-29-2009, 08:53 AM
.htaccess to remove /index/ action from URL - by El Forum - 09-29-2009, 08:58 AM
.htaccess to remove /index/ action from URL - by El Forum - 09-29-2009, 09:15 AM
.htaccess to remove /index/ action from URL - by El Forum - 09-29-2009, 09:17 AM
.htaccess to remove /index/ action from URL - by El Forum - 09-29-2009, 09:19 AM
.htaccess to remove /index/ action from URL - by El Forum - 09-29-2009, 09:58 AM
.htaccess to remove /index/ action from URL - by El Forum - 09-29-2009, 10:01 AM
.htaccess to remove /index/ action from URL - by El Forum - 09-29-2009, 10:07 AM
.htaccess to remove /index/ action from URL - by El Forum - 09-29-2009, 10:20 AM
.htaccess to remove /index/ action from URL - by El Forum - 09-29-2009, 04:05 PM
.htaccess to remove /index/ action from URL - by El Forum - 09-29-2009, 04:18 PM
.htaccess to remove /index/ action from URL - by El Forum - 09-29-2009, 04:47 PM
.htaccess to remove /index/ action from URL - by El Forum - 09-29-2009, 05:08 PM



Theme © iAndrew 2016 - Forum software by © MyBB