どうすれば入手することができますか
http://www.example.com/aaa/bbb/ccc
に
http://www.example.com/index.php?cat=ccc
また、次のような場合に機能することを望んでいます
http://www.example.com/aaa
http://www.example.com/aaa/
どっちが
http://www.example.com/index.php?cat=aaa
どうすれば入手することができますか
http://www.example.com/aaa/bbb/ccc
に
http://www.example.com/index.php?cat=ccc
また、次のような場合に機能することを望んでいます
http://www.example.com/aaa
http://www.example.com/aaa/
どっちが
http://www.example.com/index.php?cat=aaa
これを試すことができます:
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
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/folders/LastFolder
に:
http://www.example.com/index.php?cat=LastFolder
永続的で目に見えるリダイレクトの場合は、次のように置き換え[L,NC,QSA]
ます[R=301,L,NC,QSA]