Mod_Rewrite で Web サイトを作成しています。現時点では、すべての URL が.php
末尾にあるページ名にリダイレクトされます。
ただし/about/
、 andは and/photos/
にリダイレクトする必要がpage.php?page=about
ありpage.php?page=photos
ます。
これを行う方法はありますか?
現在のコード:
RewriteEngine on RewriteBase /new/
RewriteRule ^about/$ /new/page.php?page=about [L]
RewriteRule ^([^/]*)/$ /new/$1.php [L]
RewriteRule ^blog/([^/]*)/$ /new/blog.php?page=$1 [L]
RewriteRule ^blog/post/([^/]*)/$ /post.php?post=$1 [L]
RewriteRule ^blog/category/([^/]*)/$ /category.php?category=$1 [L]