私は次のURLを持っています..
http://localhost/ci/site_controller/home
site_controller
URLからコントローラーを削除したい..
http://localhost/ci/home
CodeIgniter でこれを行うにはどうすればよいですか?
注: mod_rewrite の使用方法がわからないため、Google で検索しただけでなく、何を試したかを尋ねる場合。
編集
私はこれをroutes.phpに持っています
$route['default_controller'] = "site_controller/home";
$route['ci/home'] = 'ci/site_controller/home';
$route['404_override'] = '';
しかし、まだ機能していません!
.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