程序员人生 网站导航

WordPress 伪静态规则,IIS下httpd.ini代码

栏目:WordPress时间:2014-04-01 11:31:11

WordPress 伪静态规则,IIS下httpd.ini代码

一个httpd.ini文件 ,里面写入代码

[ISAPI_Rewrite]

# 3600 = 1 hour

CacheClockRate 3600

RepeatLimit 32

# 解决中文tag问题

RewriteRule /tag/(.*) /index.php?tag=$1

# sitemapxml

RewriteRule /sitemap.xml /sitemap.xml [L]

RewriteRule /favicon.ico /favicon.ico [L]

# For file-based wordpress content (i.e. theme), admin, etc.

RewriteRule /wp-(.*) /wp-$1 [L]

# For normal wordpress content, via index.php

RewriteRule ^/$ /index.php [L]

RewriteRule /(.*) /index.php/$1 [L]

本人测试完全ok tag可以中文化 目录可以, 所有的完全可以。目前最完美的方法。不象有的要不支持文章,就不支持tag了

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐