在启动网站时,它将重定向到同一域中的另一个网址

时间:2015-02-27 10:50:32

标签: asp.net .htaccess redirect iis web-config

我需要在启动时重定向网站网址。 我的网站链接与http://www.test.com一样,加载网站时会自动重定向到http://www.test.com/ar

我只是尝试<location path="http://www.test.com/ar">

但它不起作用..

任何人都可以帮助我们如何实现这一目标。谢谢你提前寻求帮助。

2 个答案:

答案 0 :(得分:1)

试试这个:

<META HTTP-EQUIV="Refresh" Content="0; URL=/ar">

答案 1 :(得分:1)

在后面的代码中尝试:

在您网页的.aspx.cs文件test.com上:

protected void Page_Load(object sender, EventArgs e)
{
     Server.Transfer("http://www.test.com/ar");
}