`
yanyanquan
  • 浏览: 441472 次
  • 性别: Icon_minigender_1
  • 来自: 江门
社区版块
存档分类
最新评论

隐藏网站后缀名.aspx[没什么实际意义]

阅读更多

首先添加全局应用程序Global.asax

    protected void Application_BeginRequest(Object sender, EventArgs e)
    {
        string rawUrl = Request.RawUrl;
        rawUrl = rawUrl.Replace("html", "aspx");
        Context.RewritePath(rawUrl);
    }

 

浏览器输入http://localhost:1981/UrlRewritingTest/Default.html 实际跳转到Default.aspx

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics