让 htaccess 重写我的链接以获得更好的 seo,如下所示:
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} .*/([^/]+)/? [NC]
RewriteCond %{REQUEST_URI} !index\.php [NC]
RewriteRule .* /index.php?cat=%1 [L,NC,QSA]
重写
http://www.example.com/any/number/of/directories/lastDir
至:
http://www.example.com/index.php?cat=lastDir
但是我的 css 无法正常工作,当我将 htaccess 上传到服务器时,只有纯文本,没有图像和 css
尝试将基本标记添加到 html 中,但它不起作用
<base href="http://www.example.com/">