.htaccess を使用して自分の URL を SEO に適した URL に変換するにはどうすればよいですか?
このような元のURL:
http://palestinianz.com/?page=person&p=10
と
http://palestinianz.com/?page=persons&c=10
最初のリンクの書き換えられた URL は次のとおりです。
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)\.html$ /?page=$1&p=$2 [L]
最初のリンクの結果:
http://palestinianz.com/person/10.html
書き換えられた URL にリダイレクト ルールを書き込む方法を教えてください。