hi
i how can i change my site URL using mod_rewrite my problem is when i open my site's admin section i have to write www.example.com/index.php/admin
what i want is i directly open my site like www.example.com/admin please help
thanks
hi
i how can i change my site URL using mod_rewrite my problem is when i open my site's admin section i have to write www.example.com/index.php/admin
what i want is i directly open my site like www.example.com/admin please help
thanks
Here's a .htaccess
file copied from the CodeIgniter PHP framework:
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
This redirects everything that isn't index.php
, robots.txt
or anything in the images
folder to index.php/$1
, where $1
is the URL the user entered.
You need these rules as:
index.php
would cause an infinte loop - http://localhost/index.php/index.php/index.php/...
robots.txt
is an important file that search engines use. It is just plain text; you don't want it handled by your code.