您的位置:首页 > 其它

IIS Rewrite 模块实现伪静态

2013-05-25 22:17 295 查看
1. 把文件夹上传到服务器



2.  把 Rewrite.dll 配置到网站的 ISAPI 筛选器



重启IIS

附上 映射配置

[ISAPI_Rewrite]

# This is a comment

# 300 = 5 minutes

CacheClockRate 300

RepeatLimit 20

# Block external access to the httpd.ini and httpd.parse.errors files

RewriteRule /httpd(?:\.ini|\.parse\.errors) / [F,I,O]

# Some custom rules

RewriteRule /artist-(\d+)\.html /artist\.php\?id=$1 [L]

RewriteRule /artist-list-(.+)\.html /artist_list\.php\?tp=$1 [L]

RewriteRule /theme-(\d+)\.html /theme\.php\?themeid=$1 [L]

RewriteRule /theme-list\.html /theme_list\.php [L]

参考文章

http://jingyan.baidu.com/article/c74d6000478f650f6a595df4.html

http://www.sitestar.cn/help/article.php?id=111

http://www.alixixi.com/program/a/2009071056798.shtml
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: