このようなより良いseoのために私のリンクを書き直しているhtaccessを手に入れました:
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/">