# These settings routes all traffic, except concrete files, to the dispatcher
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^(.*)$ index.php [NC,L]
问题是它确实将具体文件路由到调度程序:(
如何制作,以便忽略http://site.com/style.css
之类的网址?
答案 0 :(得分:4)
试试这个让我知道:
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.php [NC,L]
您正在将所有内容重写为index.php,这将检查文件/文件夹/符号链接是否存在,然后加载文件(如果存在)。