迁移到IIS后,Worpress重写规则问题

时间:2019-01-28 08:13:58

标签: wordpress iis mod-rewrite url-rewriting

我从Xampp迁移到另一台运行IIS的服务器。 我已经运行了一个php网站(在根文件夹上),并且在一个子文件夹(称为wp)中是wordpress网站。在Xampp服务器上,它工作正常(除“速度”页面之外)

现在我遇到了我可以在后端登录的问题,并且如果我指定了完整的网址(例如https://www.hoegner-farben.de/wp/news/,但是如果我想进入主网站{{, 3}}它使我超时。

这是wp文件夹中的我的web.config

<?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>

有人知道我在做什么错吗?

0 个答案:

没有答案