1
我有以下.htaccess強制所有文件通過index.php文件,我只注意到,所有我對CSS,JavaScript,圖像的引用停止工作。我認爲是造成這種情況的htaccess,如果是這樣,我該如何解決這個問題?.htaccess重定向導致css或圖像加載
這裏是我的.htaccess文件:
<IfModule mod_rewrite.c>
# redirect all calls to index.php
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?url=$1 [PT,L]
</IfModule>