这是我的 .htaccess 文件:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^.*$ ./index.php
这是我的文件夹结构
testsite/index.php
testsite/css/style.css
testsite/.htaccess
问题:每当我http://localhost/testsite/
去它加载css罚款。但是每当我转到http://localhost/testsite/abc/test/
css 时,它都不会渲染,因为它试图从 testsite/abc/test/css 获取它。
我宁愿不使用每个文件的完整网址,或者必须动态测试层次结构级别然后转到 ../css/style.css
非常感谢先进,
缺口