我是.htaccess的新手所以请耐心等待。
我想让我的网址看起来像:
http://example.com/login
使用.htaccess,它使用:
http://example.com/index.php?url=login
我的.htaccess看起来像这样:
RewriteEngine On
RewriteRule ^(.*)$ index.php?url=$1 [L,QSA]
这个问题是,当我尝试访问http://example.com/asset/style.css
时,它只显示我的index.php而无法使用我的css。如何更改此设置才能使用我的css文件?
答案 0 :(得分:0)
尝试
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php?url=$1 - [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]