1

我有两个来自 wordpress 设置的 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>

我想添加一些异常,例如如果在 wordpress 文件夹中,该规则未运行。

就我而言,我安装了 2 个 wordpress,其中设置 -> 永久链接 -> 帖子名称,1 个在根目录(http://example.com/)中,其他在 /wordpress (http://example.com/wordpress)目录中.

第二个 wordpress (/wordpress) 我更改了 web.config 规则 name="wordpress2" 并且它可以工作,但是如果我想查看示例页面(http://example.com/wordpress/sample-page)而不是页面重定向到 404 页面未找到。

4

1 回答 1

1

更改下面显示的匹配网址,希望这会有所帮助。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
<rewrite>
    <rules>
        <rule name="Main Rule" stopProcessing="true">
            <match url="^(.*)/$" />
            <conditions logicalGrouping="MatchAll">
                <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>
于 2013-11-05T08:30:27.277 回答