How to 301 redirect in ASP.NET 4.0?

后端 未结 5 626
再見小時候
再見小時候 2020-12-16 15:59

I am trying to implement URL redirect for the website rather than doing it page by page. I want to do it in the global.asax file. Below is the code i have defined.

I

5条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-16 16:10

    Version 4 of .NET actually has an improved function for single page implementation - the redirectpermanent.

    Response.RedirectPermanent(NEW_URL);

提交回复
热议问题