服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > php教程 > wordpress教程 >

在iis6上设置wordpress伪静态规则方法

时间:2014-12-22 01:09来源:未知 作者:最模板 点击:
利用iis6 自带的httpd.ini文件 在网站根目录新建一个httpd.ini 内容如下: [ISAPI_Rewrite] # 3600 = 1 hour CacheClockRate 3600 RepeatLimit 32 # ISAPI_Rewrite 1.3 版本 域名的301重定向 RewriteCond Host: ^xmspace.net$

利用iis6 自带的httpd.ini文件

在网站根目录新建一个httpd.ini 内容如下:

[ISAPI_Rewrite]

# 3600 = 1 hour
CacheClockRate 3600

RepeatLimit 32
# ISAPI_Rewrite 1.3 版本 域名的301重定向
RewriteCond Host: ^xmspace.net$
RewriteRule (.*) http://www.xmspace.net$1 [I,R]

# Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
# For tag(中文标签以及标签翻页的规则)
RewriteRule /tag/(.*)/page/(d+)$ /index.php?tag=$1&paged=$2
RewriteRule /tag/(.+)$ /index.php?tag=$1
# For category(中文分类以及分类翻页的规则)
RewriteRule /category/(.*)/page/(d+)$ /index.php?category_name=$1&paged=$2
RewriteRule /category/(.*) /index.php?category_name=$1
# For sitemapxml
RewriteRule /sitemap.xml /sitemap.xml [L]
RewriteRule /sitemap.xml.gz /sitemap.xml.gz [L]
RewriteRule /robots.txt /robots.txt [L]
RewriteRule /favicon.ico /favicon.ico [L]
#子目录,如果不添加子目录会404
RewriteRule /webimg/(.*) /webimg/$1 [L]
RewriteRule /gg/(.*) /gg/$1 [L]
# For file-based wordpress content (i.e. theme), admin, etc.
RewriteRule /wp-(.*) /wp-$1 [L]
RewriteRule /wp-admin/(.*) /wp-admin/$1 [L]
# For normal wordpress content, via index.php
RewriteRule ^/$ /index.php [L]
RewriteRule /(.*) /index.php/$1 [L]

(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------