パラメータで国コードを渡していますが、その URL を書き換えたいと考えています。例えば
www.website.com/deal.php?country_code=gb
に
www.website.com/jp
これまでのところ、次を使用して書き直すことができました
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Match the first two groups before / and send them to the query string
RewriteRule ^([A-Za-z-]+)?$ deal.php?country_code=$1 [L,R=301]
したがって、www.website.com/gb にアクセスできて動作しますが、それでも www.website.com/deal.php?country_code=gb にアクセスできます。理想的には、www.website.com/deal.php?country_code=gb にアクセスしようとすると、/gb にリダイレクトしたい
これどうやってするの?