I have the following url ..
http://localhost/ci/site_controller/home
I want to remove the site_controller controller from the url, resulting in ..
http:
How to do it in CodeIgniter?
Note. If you ask what I tried, than I just did a Google search, since I don't know how to use mod_rewrite.
EDIT
I have it on my .php routes
$route['default_controller'] = "site_controller/home"; $route['ci/home'] = 'ci/site_controller/home'; $route['404_override'] = '';
but still not working!
.htaccess
RewriteEngine On RewriteBase /ci/ RewriteCond %{REQUEST_URI} ^system.* RewriteRule ^(.*)$ /index.php/$1 [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php/$1 [L] ErrorDocument 404 /index.php
Yousuf memon
source share