Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个问题,URL 已经被这样重写了
RewriteEngine on RewriteCond %{REQUEST_URI} !index.php RewriteRule ^(.*)$ index.php?test=$1 [NC,L]
我的图像和 css 样式都没有被应用。我试过<base href="/">了,但它不起作用。
<base href="/">
有什么解决办法吗?
尝试这个
RewriteEngine on RewriteCond %{REQUEST_URI} !index.php ## if the request is not for a valid file RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?test=$1 [NC,L]