强制将非www网址重定向到www

时间:2017-05-15 02:46:30

标签: wordpress web-config

我会直截了当地说到这一点。 我实际上在Windows服务器上安装了一个wordpress网站。 但是,当我使用"sample.com.ph"在我的浏览器上访问该网站时,它会显示The connection has timed out但是当我访问"www.sample.com.ph"时,它工作得很好。

这是我的web.config文件。 我真的很新,所以请耐心等待。 我想要的是强迫它重定向到www.

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <rewrite>
      <rules>
      <rule name="WordPress: http://www.sample.com.ph" patternSyntax="Wildcard">
        <match url="*"/>
          <conditions>
            <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
            <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
          </conditions>
        <action type="Rewrite" url="index.php"/>
      </rule></rules>
    </rewrite>
  </system.webServer>
</configuration>

0 个答案:

没有答案