新建一个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]

 

相关文章:

  • 2022-01-29
  • 2022-01-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-03
  • 2021-08-12
  • 2022-12-23
  • 2021-08-03
猜你喜欢
  • 2021-11-14
  • 2022-12-23
  • 2021-10-10
  • 2022-12-23
  • 2022-12-23
  • 2021-05-23
  • 2021-06-30
相关资源
相似解决方案