「testsite.ir」と「testsite.com」などの 2 つの Web サイトがあります。私のWebサイトがWindows Server 2008、Microsoft-IIS/7.5にあることは知っています。301 リダイレクトを使用してユーザーを .ir から .com にリダイレクトするにはどうすればよいですか? .htaccess ファイルを使用できますか、それとも webconfig を使用する必要がありますか?
webconfigで次のコードを使用しますが、何も起こりません:
<rule name="Redirect from ir to com" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="^www\.testsite\.ir$" />
</conditions>
<action type="Redirect" url="http://www.testsite.com/{R:0}" />
</rule>
どんな助けでも大歓迎です!