当我尝试使用 .htaccess 重写 url 时,我的页面 css 受到干扰。我不知道为什么会这样。任何人请帮助..
RewriteBase /
RewriteEngine On
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^([^\.]+)$ $1.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/(.*)$ index.php?$1=$2 [L,QSA]
这是 没有重写url的例子