最新消息:伪静态技术大全博客开通啦!再也不为伪静态东奔西走!更多问题可以反映给博主:野狼,QQ1615241386 QQ交流群:112696646

wordpress的伪静态规则 iis服务器上web.config格式文件

伪静态规则实例 野狼 156浏览 0评论

wordpress的伪静态规则,有的wp程序伪静态写的比较简单,但这个是我们找的比较完善的一个伪静态规则。前边的一些规则如果用不到的,可以删除,最后一个规则是比较重要的。

<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>

如果是需要其他格式的,也可以在我们的博客中找到。

发表评论
请遵守网络文明公约,理性发言
访客头像

还没有人来评论,快来抢个沙发吧!