付款方式
帮助中心
在线客服:
您好,欢迎来迅美网!您是新用户?
免费注册
已有帐号
立即登陆
!
首页
VPS
云主机
关于迅美
新手指引
交易条款
常见问题
联系客服
支付方式
C2C商城
在线支付
银行电汇
售后服务
退换货政策
白名单报备
域名备案
实用工具
网速测试
白名单审核验证
当前位置:
迅美网
>
帮助中心
>
常见问题
Wordpress伪静态规则,Win+II6+PHP环境完美解决方案
作者:
迅美网
发布日期:2012/9/18 22:30:11 浏览次数:7614
复制
Windows环境下WordPress伪静态规则文件内容如下:
[ISAPI_Rewrite]
# 3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32
# Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
# -------------在此行以下添加伪静态规则------------
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 /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]