「index.php?category=1」や「article.php?articleid=10」などといった動的ページの象徴ともいえるアドレスである。
これを、たとえば「category-1.html」や「article-10.html」と変換するには、「.htaccess」に次のように記述する。
http://www.zibaj.net/modules/xfsection/index.php?category=19
http://www.zibaj.net/modules/xfsection/article.php?articleid=41
といったものを
http://www.zibaj.net/modules/xfsection/category-19.html
http://www.zibaj.net/modules/xfsection/article-41.html
でアクセス可能にするのが目的です。
◆記述例
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^item-([0-9]+).html+ index.php?itemid=$1