关于litespeed问题的RewriteRule

当我访问http://domain.com/example时,我的规则很有效。查询看起来不错等。 当我访问http://domain.com时,index.php没有加载,似乎是一个空白的重定向,http://domain.com/city.php?q = 我怎样才能加载index.php而不是Rewrite踢...
Options +FollowSymLinks
RewriteCond %{REQUEST_URI} !.(css|jpg|gif|png|jar|js|html|htm|php)$
RewriteEngine On
RewriteRule ^([^/]*)$ /city.php?q=$1 [L]
谢谢     
已邀请:
好,我知道了。
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d 
    

要回复问题请先登录注册