[ISAPI_Rewrite]
RepeatLimit 32
# Protect httpd.ini and httpd.parse.errors files
# from accessing through HTTP
# 圈圈说网站首页伪静态
RewriteRule ^(.*)/t/index\.html$ $1/t/index\.asp [I,O]
RewriteRule ^(.*)/t/index-([0-9]+)\.html$ $1/t/index\.asp\?page=$2 [I,O]
# 圈圈说评论列表伪静态
RewriteRule ^(.*)/t/post-([0-9]+)\.html$ $1/t/index\.asp\?act=pl&id=$2 [I,O]
RewriteRule ^(.*)/t/post-([0-9]+)-1\.html$ $1/t/index\.asp\?act=pl&id=$2&x=1 [I,O]
RewriteRule ^(.*)/t/pl-([0-9]+)\.html$ $1/t/index\.asp\?act=plist&page=$2 [I,O]
RewriteRule ^(.*)/t/pl-([0-9]+)-1\.html$ $1/t/index\.asp\?act=plist&page=$2&x=1 [I,O]
# 你我网301重定向到www
RewriteCond Host: ^youmew\.com$
RewriteRule (.*) http\://www\.youmew\.com$1 [I,RP]
2013-02-06 11:04:04 评(0)