我想知道如何根据下面的场景进行特定的重定向?
当人们在浏览器http://www.test.com/gotogoogle
打开此网址时,会将其重定向到http://www.google.com
。
答案 0 :(得分:1)
您可以在IIS7 URL Rewrite模块中使用RewriteMap来实现此目的。
http://learn.iis.net/page.aspx/469/using-rewrite-maps-in-url-rewrite-module/
答案 1 :(得分:0)
您可以使用URL Rewrite模块实现此目的。该规则将是(来自网站根文件夹的 web.config 的内容):
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Go To Google" stopProcessing="true">
<match url="^gotogoogle$" />
<action type="Redirect" url="http://www.google.com/" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
如果您已经有web,config,那么只添加适当的片段。