WordPress 偽靜態(tài)規(guī)則,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了