簡単mod rewriteでURL変換のしかた

ちょっと必要があったのでmod rewriteをい使ってみました。

index.php?target=○○(数字) に index○○.html というURLでアクセスできるようにします。
.htaccessに↓を追加するだけ。

RewriteEngine on
RewriteRule ^index([0-9]+).html?$ index.php?target=$1 [L]
RewriteRule ^index.html?$ index.php [L]

参考にしたサイト
http://www.ilovejackdaniels.com/apache/mod_rewrite-cheat-sheet/

This entry was posted in メモ・リンクとか. Bookmark the permalink.

コメントを残す

メールアドレスが公開されることはありません。