.htaccess redirect子目录到index.php

时间:2014-04-17 22:55:05

标签: .htaccess mod-rewrite

我希望rewrite url喜欢:
http://domain.com/index.php/subdirectory/subdirectory/
至: http://domain.com/index.php

我的重写规则如下所示:

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_URI} !(.*) 
RewriteRule ^(.*)$ index.php$  [L]

感谢,

1 个答案:

答案 0 :(得分:0)

RewriteCond

RewriteCond %{REQUEST_URI} !(.*) 

总是假的,你不需要它。只需使用:

RewriteEngine On
RewriteRule ^(.*)$ index.php  [L]