使用mod_rewrite删除.php

时间:2009-07-23 11:13:56

标签: php mod-rewrite

如何更改此网址:http://localhost/index.php/Department/2

到这一个:http://localhost/index/Department/2

感谢。

1 个答案:

答案 0 :(得分:6)

尝试此规则:

RewriteRule ^index/(.*) index.php/$1

如果你想剥离index/,试试这个:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule !^index\.php$ index.php%{REQUEST_URI}