标签: apache mod-rewrite
我有以下重写规则:
RewriteEngine On RewriteCond %{REQUEST_URI} !\.(gif|jpg|png|js|css)$ RewriteRule ^(.*)$ index.php?url=$1 [L,QSA]
如果网址为:
http://localhost/blah...../
Apache没有通过url查询字符串中的点,您只是将其视为blah/
url
blah/
这背后的原因是什么?如何解决?