1

我已经创建了将非 www 重定向到 www、/index.html 到“/”、404 到自定义页面的代码,我正在使用 IIS 服务器并将此代码放在 web.config 文件中,看看,它工作正常。但我想知道它对 SEO 有好处吗?或者它需要任何修改?

谢谢

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true" />
    <rewrite>
      <rules>
        <rule name="CanonicalHostNameRule1" stopProcessing="true">
          <match url="index\.html(?:l)?" />
          <conditions>
            <add input="{HTTP_HOST}" pattern="example\.com.au$" />
          </conditions>
          <action type="Redirect" url="http://www.example.com.au/" />
        </rule>
        <rule name="CanonicalHostNameRule2" stopProcessing="true">
          <match url="(.*)" />
          <conditions>
            <add input="{HTTP_HOST}" pattern="^example\.com.au$" />
          </conditions>
          <action type="Redirect" url="http://www.example.com.au/{R:1}" />
        </rule>
      </rules>
    </rewrite>
    <httpErrors errorMode="Custom" existingResponse="Replace">
      <remove statusCode="404" />
      <error statusCode="404" responseMode="ExecuteURL" path="/404error.html" />
    </httpErrors>
  </system.webServer>
</configuration>
4

1 回答 1

0

你的规则看起来不错。一般来说,使您的 URL 成为规范的想法是将所有链接汁定向到单个规范地址。在谷歌等眼里,www.mydomain.commydomain.com是两个不同的网址。mydomain.com/和 也是如此mydomain.com/imndex.html。我要添加到您的规则中的唯一内容是statusCode302。这将告诉 Google 和客户端的浏览器您希望他们从现在开始引用目标 URL。这样,Google 会将所有链接汁汇总到目标,并且客户端浏览器也不需要在每个请求中重新重定向。

于 2013-04-11T07:13:46.990 回答