隐藏ASP.NET MVC的版本信息,使其不在HTTP Header中显示

Posted namexiaoqi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了隐藏ASP.NET MVC的版本信息,使其不在HTTP Header中显示相关的知识,希望对你有一定的参考价值。

隐藏ASP.NET MVC的版本信息,使其不在HTTP Header中显示。

一、隐藏:X-AspNetMvc-Version

在Global.asax文件的Application_Start方法中添加:

MvcHandler.DisableMvcResponseHeader = true;

二、移除 Header 中的 Server

在Global.asax文件中添加:

 protected void Application_PreSendRequestHeaders(object sender, EventArgs e)
        
            var app = sender as HttpApplication;
            if (app == null || app.Context == null)
            
                return;
            

            // 移除 Server
            app.Context.Response.Headers.Remove("Server");
        

三、移除 X-Powered-By

在Web.config文件中添加:

<system.webServer>
    <!-- 其它内容 --> 
    <httpProtocol>
        <customHeaders>
            <!-- 移除 X-Powered-By -->
            <clear />
            <!-- 还可以添加自己的 X-Powered-By 做为标识 -->
            <add name="X-Powered-By" value="bbb.com" />
        </customHeaders>
    </httpProtocol>
</system.webServer>

四、移除X-AspNet-Version

在Web.config文件中<httpRuntime enableVersionHeader="false" />

<httpRuntime enableVersionHeader="false" />

以上是关于隐藏ASP.NET MVC的版本信息,使其不在HTTP Header中显示的主要内容,如果未能解决你的问题,请参考以下文章

为啥 Asp.Net MVC 不在我的共享目录中搜索视图?

ASP.NET MVC 的 Piranha CMS 路由问题

ASP.NET MVC3 版本发布 [关闭]

如何使用 AJAX 将数据发布到 ASP.NET MVC 控制器?

ASP.NET MVC SiteMap 提供程序——如何在实际菜单中“隐藏”单个项目

asp.net mvc视图中的C#复选框事件不在表单内