.htaccess链接css没有链接

时间:2018-02-13 19:01:04

标签: php css .htaccess mod-rewrite

我是.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文件?

1 个答案:

答案 0 :(得分:0)

尝试

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php?url=$1 - [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]