宝塔用户_pevkdp 发表于 2021-4-26 22:32:47

【已解决】宝塔 Windows面板 IIS wordpress伪静态问题

宝塔 Windows面板 IIS wordpress伪静态问题,/wp-admin/edit-tags.php?taxonomy=post_tag和 /wp-admin/edit-tags.php?taxonomy=category 打开404错误,如何解决啊?

宝塔用户_pevkdp 发表于 2021-4-26 22:34:14

<?xml version="1.0" ?>
<rules>
        <rule name="category_rewrite">
                <match url="category/?(.*)"/>
                <conditions logicalGrouping="MatchAll" trackAllCaptures="false"/>
                <action appendQueryString="false" logRewrittenUrl="false" type="Rewrite" url="/index.php?category_name={R:1}"/>
        </rule>
        <rule name="tags_rewrite">
                <match url="tag/?(.*)"/>
                <conditions logicalGrouping="MatchAll" trackAllCaptures="false"/>
                <action type="Rewrite" url="index.php?tag={R:1}"/>
        </rule>
        <rule name="Main Rule_rewrite" stopProcessing="true">
                <match url=".*"/>
                <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
                </conditions>
                <action type="Rewrite" url="index.php/{R:0}"/>
        </rule>
        <rule name="wordpress_rewrite" patternSyntax="Wildcard">
                <match url="*"/>
                <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
                        <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>
用面板默认的伪静态。

宝塔用户_pevkdp 发表于 2021-4-26 22:43:52

问题解决:
第一步安装:IIS Chinese Tag Permalink插件
第二步伪静态规则改为:
<?xml version="1.0" ?>
<rules>
        <rule name="category_rewrite">
                <match url="category/?(.*)"/>
                <conditions logicalGrouping="MatchAll" trackAllCaptures="false"/>
                <action appendQueryString="false" logRewrittenUrl="false" type="Rewrite" url="/index.php?category_name={R:1}"/>
        </rule>
        <rule name="Main Rule_rewrite" stopProcessing="true">
                <match url=".*"/>
                <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
                </conditions>
                <action type="Rewrite" url="index.php/{R:0}"/>
        </rule>
        <rule name="wordpress_rewrite" patternSyntax="Wildcard">
                <match url="*"/>
                <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
                        <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>
完美解决问题。
页: [1]
查看完整版本: 【已解决】宝塔 Windows面板 IIS wordpress伪静态问题