如何在 ASP.Net 中使用 URL 重写
本文关键字:URL 重写 Net ASP | 更新日期: 2023-09-27 17:56:55
我正在尝试使用简单的URL重写。
我正在尝试将页面加载时的 URL 缩短到其简化版本(无文件扩展名)。我没有在我的 URL 中使用任何查询字符串。
以下是当前网址:
http://localhost:64341/Report/MainPage.aspx
当页面加载时,我想看到这个:
http://localhost:64341/Report/MainPage
这是我在 Global.asax 文件中的代码:
protected void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
RegisterRoutes(RouteTable.Routes);
}
public static void RegisterRoutes(RouteCollection routeCollection)
{
routeCollection.MapPageRoute("RouteForCustomer", " MainPage", "~/ MainPage.aspx");
}
如何在页面加载时在代码隐藏中实现此目的?
尝试Context.RewritePath("http://localhost:64341/Report/MainPage", true);
查看此博客http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with-asp-net.aspx