在windows服务器上设置301、伪静态(wordpress)

新建一个httpd.ini文件,插入代码:

[ISAPI_Rewrite]
RewriteCond Host: ^wuchao.cc$
RewriteRule (.*) http://www.wuchao.cc$1 [R,I,L]

# 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]
[ISAPI_Rewrite]
原文地址:https://www.cnblogs.com/wuchao/p/3236328.html