我们有一个具有别名 (alias.com) 的域 (domain.com)。我们正在使用 Plesk 和 Windows Server。在 Plesk 中,alias.com 被设置为 domain.com 的别名。
我们需要当人们访问 alias.com 时,它会转到主域中的某个页面,例如 domain.com/this-page.html。
该网站是一个 ASP.NET MVC 网站,以防我们可以使用 web.config 做一些事情。
这可能吗?我们应该怎么做?
我们有一个具有别名 (alias.com) 的域 (domain.com)。我们正在使用 Plesk 和 Windows Server。在 Plesk 中,alias.com 被设置为 domain.com 的别名。
我们需要当人们访问 alias.com 时,它会转到主域中的某个页面,例如 domain.com/this-page.html。
该网站是一个 ASP.NET MVC 网站,以防我们可以使用 web.config 做一些事情。
这可能吗?我们应该怎么做?
在旧页面所在的目录中打开 web.config 然后为旧位置路径和新目标添加代码,如下所示:
<configuration>
<location path="services.htm">
<system.webServer>
<httpRedirect enabled="true" destination="http://example.com/services" httpResponseStatus="Permanent" />
</system.webServer>
</location>
<location path="products.htm">
<system.webServer>
<httpRedirect enabled="true" destination="http://example.com/products" httpResponseStatus="Permanent" />
</system.webServer>
</location>
</configuration>