我希望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]
感谢,
答案 0 :(得分:0)
RewriteCond
RewriteCond %{REQUEST_URI} !(.*)
总是假的,你不需要它。只需使用:
RewriteEngine On
RewriteRule ^(.*)$ index.php [L]