Hoge Lumber Company - New Knoxville, Ohio
In business since 1904, serving U.S. and international lumber needs. Your source for all custom wood projects. Stop in or request a quote today!
動的なURLを以下のような表記に変更する方法
https://hoge.com/AAAA/BBBB/CCCC/
.htaccessに以下の文を追加
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([0-9A-Za-z]+)/([0-9A-Za-z)]+)/([0-9A-Za-z)]+)/$ index.php?a=$1&b=$2&c=$3 [L]
RewriteRule ^([0-9A-Za-z]+)/([0-9A-Za-z)]+)/$ index.php?a=$1&b=$2 [L]
RewriteRule ^([0-9A-Za-z]+)/$ index.php?a=$1 [L]
さくらでは
https://hoge.com/AAAA/
https://hoge.com/AAAA/BBBB/
https://hoge.com/AAAA/BBBB/CCCC/
でアクセス可能になりました。
コメント