标签: php mod-rewrite
如何更改此网址:http://localhost/index.php/Department/2
到这一个:http://localhost/index/Department/2
感谢。
答案 0 :(得分:6)
尝试此规则:
RewriteRule ^index/(.*) index.php/$1
如果你想剥离index/,试试这个:
index/
RewriteCond %{REQUEST_FILENAME} !-f RewriteRule !^index\.php$ index.php%{REQUEST_URI}