IIS Rewrite 模块实现伪静态

1. 把文件夹上传到服务器

IIS Rewrite 模块实现伪静态_第1张图片


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

IIS Rewrite 模块实现伪静态_第2张图片

重启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



你可能感兴趣的:(IIS Rewrite 模块实现伪静态)