我在IIS中使用以下HTTP绑定设置了站点“ MySite”,
我需要将所有来自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
。
任何想法如何实现这一目标?
答案 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>
注意:如果未安装Url重写模块,请先安装它。