これからURLを取得しようとしています:
www.exmple.com/test.php?type=abc&id=12345
to
www.exmple.com/rrr/abc
出来ますか... ?ありがとう
はい。可能です
この問題を解決するには、htaccess ファイルに以下を追加するだけです。
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^yoursite.com
RewriteRule (.*) http://www.yoursite.com/$1 [R=301,L]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9} /index.html HTTP/
RewriteRule ^index.html$ http://www.yoursite.com/ [R=301,L]
その他のリソースはこちら