Google搜索返回Azure网站域名

时间:2015-07-23 08:43:20

标签: asp.net azure

我在Azure上部署了一个ASP.NET MVC网站。我已将Azure配置为指向我的自定义域,并且我已将Azure IIS配置为返回301,以便每次搜索都应返回到我的自定义域。 ASP.NET MVC中的重定向配置如下:

<system.webServer>
  <rewrite>
    <rules>
      <rule name="Disable Azure Domain" patternSyntax="Wildcard" stopProcessing="true">
        <match url="*" />
        <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
          <add input="{HTTP_HOST}" pattern="*.azurewebsites.net" />
        </conditions>
        <action type="Redirect" url="http://www.oxytechs.com{REQUEST_URI}" redirectType="Permanent" />
      </rule>
    </rules>
  </rewrite>

不幸的是,如果我谷歌用于&#34; OXY SmartWatch&#34;我恢复了我的Azure域,而使用Bing我恢复了我的自定义域。我该怎么做才能永远不会返回,抓取或索引Azure域?我还配置了Google网站管理员工具和Bing网站管理员工具,但问题仍然出现在Google搜索上。

0 个答案:

没有答案