您好,您修改下面的伪静态保存然后重新访问试试是否正常呢
- <?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>
复制代码 |