2

ドメインを ExampleShop.com から ExampleStore.com に変更する

約 30 の特定のページをリダイレクトしようとして問題が発生し、URL マッピングがドメインだけを変更していないページの一般的なリダイレクトも実行しようとしています。

これが私が持っているものです。一般的な書き換えルールを使用してすべてをリダイレクトし、特定の書き換えをリダイレクトしません。

Options +FollowSymLinks
RewriteEngine on

#Specialty Rewrites for non-exact mapped URLs
RewriteRule ^/gifts/jewellery/bracelets.html$ http://www.ExampleStore.com/gifts/jewellery/bracelets.html [R=301,L]

RewriteRule ^/gifts/watches/banded.html$ http://www.ExampleStore.com/gifts-for-him/jewellery/watches.html [R=301,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

#Generic Rewrite for exact mapped URLs
RewriteRule ^(.*)$ http://www.ExampleStore.com/$1 [R=301]
4

1 に答える 1