用ISAPI_Rewrite实现反向代理(ReverseProxy)

发表于:2008-10-17来源:作者:点击数: 标签:ISAPIReverseProxyRewrite代理
关键字:ISAPI_Rewrite ISAPI_Rewrite是一个强大的基于正则表达式的URL处理引擎。它非常类似于Apache's mod_Rewrite,但它是专为IIS设计的。 ISAPI_Rewrite有两个版本:ISAPI_Rewrite Full与ISAPI_Rewrite Lite。 ISAPI_Rewrite Lite是免费版本,但不支持反
关键字:ISAPI_Rewrite

ISAPI_Rewrite是一个强大的基于正则表达式的URL处理引擎。它非常类似于Apache's mod_Rewrite,但它是专为IIS设计的。
ISAPI_Rewrite有两个版本:ISAPI_Rewrite Full与ISAPI_Rewrite Lite。
ISAPI_Rewrite Lite是免费版本,但不支持反向代理功能。
ISAPI_Rewrite Full只能下载到30天的试用版本。
这篇文章介绍的是基于ISAPI_Rewrite Full实现反向代理。配置实际上很简单。写出来的目的主要是希望给初次使用ISAPI_Rewrite的朋友提供参考。
下面就是配置步骤:
1、下载ISAPI_Rewrite Full:http://www.helicontech.com/download/#isapi_rewrite
2、安装ISAPI_Rewrite Full
3、修改配置文件httpd.ini,默认位置在C:Program FilesHeliconISAPI_Rewrite。假如我们现在有两台Web服务器,一台是www.cnblogs.com, 另一台是 www2.cnblogs.com,  www2作为一台反向代理服务器,客户端浏览器访问www2服务器,www2服务器向www服务器请求内容并返回给客户端。具体在httpd.ini的配置如下:
在httpd.ini中增加下面的内容:
RewriteCond Host: www2.cnblogs.com
RewriteProxy (.*) http://www.cnblogs.com$1 [I,F,U]

Rewrite实现一个规则来实现二级域名

就是访问 dudu.cnblogs.com 映射成 www.cnblogs.com/dudu/ 
  


RewriteCond Host: (?!.|www|ww)(.*).yourname.com
RewriteRule (.*) http://www.yourname.com/$1$2 [I,R]

原文转自:http://www.ltesting.net