gpt4 book ai didi

wordpress - web.config 不适用于子文件夹中的 WordPress 永久链接

转载 作者:行者123 更新时间:2023-12-04 22:55:55 24 4
gpt4 key购买 nike

我在 IIS 服务器上的根文件夹中安装了 WP。这适用于漂亮的永久链接。

/development 还有另一个 wordpress 安装它使用以下 web.config

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="WordPress1" 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>
<staticContent>
<clientCache cacheControlCustom="public" cacheControlMode="UseMaxAge" cacheControlMaxAge="365.00:00:00"/>
<remove fileExtension=".woff"/>
<remove fileExtension=".woff2"/>
<mimeMap fileExtension=".woff" mimeType="application/x-font-woff"/>
<mimeMap fileExtension=".woff2" mimeType="application/font-woff2"/>
</staticContent>

</system.webServer>
</configuration>

但是,漂亮的永久链接在此站点的子文件夹中不起作用

然而,主页在此子文件夹中有效,并且在选择了普通永久链接时

任何想法为什么?

最佳答案

正如 pee2pee 所说,答案是将该行放在代码中。

<remove name="YourRuleName"/>

为此,您必须首先查看根目录的 web.config 文件并查找此行。
<rule name = "YourRuleName" patternSyntax = "Wildcard">

然后复制您的目录或子文件夹的 web.config 文件中的行,将“YourRuleName”更改为您在第一个标签上方根目录的 web.config 文件中找到的名称。

然后,您的子文件夹的 web.config 文件应该看起来像
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<remove name="YourRuleName"/>
<rule name="YourSubFolderRuleName" 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>

我希望它有帮助,对我来说一直如此。

关于wordpress - web.config 不适用于子文件夹中的 WordPress 永久链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46728997/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com