簡単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.

コメントをどうぞ

Your email address will not be published.

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>