现在我遇到了我可以在后端登录的问题,并且如果我指定了完整的网址(例如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>
有人知道我在做什么错吗?