4

我有一个问题,URL 已经被这样重写了

RewriteEngine on
RewriteCond %{REQUEST_URI} !index.php
RewriteRule ^(.*)$ index.php?test=$1 [NC,L]

我的图像和 css 样式都没有被应用。我试过<base href="/">了,但它不起作用。

有什么解决办法吗?

4

1 回答 1

5

尝试这个

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]
于 2013-05-04T21:28:36.510 回答