在我的应用程序中,这是我的 .htaccess 文件:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?url=$1 [PT,L,QSA]
</IfModule>
问题是当我尝试查看或链接带有如下 URL 的 CSS 文件时:
http://www.mysite.com/css/common.css
它只是加载我的 index.php 页面并运行我的整个应用程序,这不是我想要的。我该如何解决?谢谢。