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]