重写后没有显示.htaccess图像

时间:2013-05-04 21:26:05

标签: image .htaccess rewrite

我遇到了问题,网址已经像这样重写了

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

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

任何解决方案?

1 个答案:

答案 0 :(得分: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]