Web请求转发到另一个域

时间:2019-05-23 19:04:19

标签: asp.net-mvc iis networking

我在IIS中使用以下HTTP绑定设置了站点“ MySite”,

  1. www.example.com:80
  2. www.example.net:80
  3. www.example.org:80

我需要将所有来自if (newLine) { sf::Vertex line[] = drawOnImage( mainWindow, image, currentColor, sf::Mouse::getPosition(mainWindow), sf::Mouse::getPosition(mainWindow), newLine); prevPos = sf::Mouse::getPosition(mainWindow); } 的用户临时重定向到www.example.net

任何想法如何实现这一目标?

1 个答案:

答案 0 :(得分:0)

您好Siva Sankar Gurram,

您可以使用以下url重写规则,通过在iis中使用以下url重写规则将URL www.example.net重定向到www.example.com/product:

<rule name=".net to .com" enabled="true" stopProcessing="true">
                <match url="(.*)" />
                <conditions>
                    <add input="{HTTP_HOST}" pattern="^www.example.net$" />
                </conditions>
                <action type="Redirect" url="http://www.example.com/product" redirectType="Temporary" />
            </rule>

enter image description here

注意:如果未安装Url重写模块,请先安装它。