我遇到了问题,网址已经像这样重写了
RewriteEngine on
RewriteCond %{REQUEST_URI} !index.php
RewriteRule ^(.*)$ index.php?test=$1 [NC,L]
我的图片和css样式都没有被应用。我试过了<base href="/">
,但它没有用。
任何解决方案?
答案 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]