IIS7.5下WordPress做的网站固定连接404错误如何设置伪静态规则?
IIS7.5下WordPress做的网站固定连接404错误如何设置伪静态规则? 服务器升级到WIN8,IIS7.5了,发现Wordpress做的网站静态链接都失效了,全部404错误,本文就看俺IIS7.5下如何解决WORDPRESS无法配置伪静态,或者伪静态失效的问题。
很简单:把下面的代码复制,另存为:WEB.CONFIG 上传到根目录即可。
<?xml version=”1.0″ encoding=”UTF-8″ ?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name=”category”>
<match url=”category/?(.*)” />
<conditions logicalGrouping=”MatchAll” trackAllCaptures=”false” />
<action type=”Rewrite” url=”/index.php?category_name={R:1}” appendQueryString=”false”
logRewrittenUrl=”false” />
</rule>
<rule name=”tags”>
<match url=”tag/?(.*)” />
<conditions logicalGrouping=”MatchAll” trackAllCaptures=”false” />
<action type=”Rewrite” url=”index.php?tag={R:1}” />
</rule>
<rule name=”Main Rule” 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” 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>
</rewrite>
</system.webServer>
</configuration>
声明:未经上传用户或原创作者授权,请勿作他用。
其他事微信:93547942 协助处理。
砚台酪-18年专业互联网服务咨询 » IIS7.5下WordPress做的网站固定连接404错误如何设置伪静态规则?
其他事微信:93547942 协助处理。
砚台酪-18年专业互联网服务咨询 » IIS7.5下WordPress做的网站固定连接404错误如何设置伪静态规则?