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

 

posted @ 2013-08-04 14:43  Uoolo  阅读(532)  评论(0编辑  收藏  举报