Wordpress显示页面,而不显示没有https前缀的404错误

时间:2019-02-04 10:05:51

标签: wordpress iis http-status-code-404

使用www时,我在iis上安装的Wordpress会显示特定页面,而不显示404页面。没有https://即:

https://www.mydomain.co.uk/cabbage转到404错误页面

www.mydomain.co.uk/cabbage转到我网站上的某个页面,如果我禁用此页面,它将直接转到另一个页面,而不是404页面。

尝试重新保存永久链接并禁用重定向插件。

1 个答案:

答案 0 :(得分:0)

根据WordPress文档,如果您正在运行IIS 7+,则还需要安装URL Rewrite 1.1+模块。这是一个非常标准的模块,通常已经安装。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
 <system.webServer>
  <rewrite>
   <rules>
    <rule name="wordpress" 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>
  

如果您已经有一个web.config文件,只需添加缺少的标签,而无需删除任何现有设置。