-1

テスト ドメインがあり、goolge でインデックスに登録されていますが、間違っています。

ここで、すべてのパラメーターを含むすべてのページから他のドメインへの 301 リダイレクトを作成する必要があります。

アクションフィルターを作成してリダイレクトを作成することもできましたが、それは私にとっても間違っています。

webconfigで実装できるものを知っています。しかし、私は方法を理解していません。

助けてください。

私は使用しようとします:

<rewrite>
<rules>
<rule name="Redirect to main subdomain from test domain">
    <match url="^.*$" />
    <conditions>
        <add input="{HTTP_HOST}" pattern="^(www\.)uh261477\.ukrdomen\.com$" ignoreCase="true" />
     </conditions>
     <action type="Rewrite" url="http://kitesurfing-base.com{R:0}"  redirectType="Permanent" />
</rule>
</rules>
</rewrite>

しかし、それは機能しません

4

1 に答える 1

1

このルールをweb.configfor this redirectに配置できます。

<rule name="Redirect to main subdomain from test domain">
    <match url="^.*$" />
    <conditions>
        <add input="{HTTP_HOST}" pattern="^(www\.)testdomain\.com$" ignoreCase="true" />
     </conditions>
     <action type="Rewrite" url="http://otherdomain.com{R:0}"  redirectType="Permanent" />
</rule>
于 2013-10-26T09:19:12.527 に答える