或者

IIS6伪静态配置(wordpress固定链接)

作者:月光边境 浏览:174 发布时间:2018-04-24
分享 评论 0

在Win2003+IIS6环境下支持WordPress的固定连接

  1.安装ISAPI_Rewrite

  伪静态组件包

  http://pan.baidu.com/s/1jGG5YRG

  2.在网站根目录新建文件httpd.ini,输入以下内容并保存:

  [ISAPI_Rewrite]

  # 3600 = 1 hour

  CacheClockRate 3600

  RepeatLimit 32

  # Protect httpd.ini and httpd.parse.errors files

  # from accessing through HTTP

  # Rules to ensure that normal content gets through?0?2

  RewriteRule /software-files/(.*) /software-files/$1 [L]

  RewriteRule /images/(.*) /images/$1 [L]

  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]