爱程序网

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

来源: 阅读:

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

[ISAPI_Rewrite]RewriteCond Host: ^wuchao.cc$RewriteRule (.*) http://www.wuchao.cc$1 [R,I,L]# 3600 = 1 hourCacheClockRate 3600RepeatLimit 32# 解决中文tag问题 RewriteRule /tag/(.*) /index.php?tag=$1# sitemapxmlRewriteRule /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.phpRewriteRule ^/$ /index.php [L]RewriteRule /(.*) /index.php/$1 [L][ISAPI_Rewrite]

相关文章列表: