在 Windows 2008 中创建指定端口的符号链接

在 Windows 2008 中创建指定端口的符号链接

我有一台 Windows Server 2008,我的网站托管在上面。我想访问以下 URL:

http://example.com:8400/one/two/index.html

使用此 URL:

http://example.com/site.html

我尝试创建这样的符号链接:

mklink /J 'C:\inetpub\vhosts\mywebsite.com\httpdocs\site.html' 'C:\bla\bla\bla\one\two\index.html'

链接已创建,我可以访问它:

http://www.example.com/site.html

但我怀疑它没有加载内容,因为内容需要使用端口 8400。

有什么想法可以做到这一点吗?

答案1

您将无法使用符号链接在 IIS 中路由不同的端口。您需要使用 URL 重写模块和 AAR(应用程序请求路由)。

这里有一个链接可以帮助您入门。

http://www.iis.net/learn/extensions/url-rewrite-module/reverse-proxy-with-url-rewrite-v2-and-application-request-routing

相关内容