我的网站运行时使用apache mod_rewrite和php
在我的public_html文件夹中,我有diss .htaccess文件
RewriteEngine On
RewriteBase /
RewriteRule ^([0-9a-z]+)$ index.php?reurl=$1
如果该目录中没有同名文件,则可以正常工作。所以例如/ favicon将匹配文件/favicon.ico并且永远不会执行RewriteRule。
我怎么能停止/ favicon匹配/favicon.ico?