X-AspNet-Version: 4.0.30319 헤더 제거 방법

0 투표
c#.net 에서 헤더에 X-AspNet-Version 값이 붙어 출력되는데요.

제거 방법 알려주세요.

1 답변

0 투표

http://www.iis.net/ConfigReference/system.webServer/httpProtocol/customHeaders

To remove the MVC header,

In Global.asax, in the Application Start event:

MvcHandler.DisableMvcResponseHeader = true;

Put this in the web.config get rid of the X-AspNet-Version header:

<system.web>
<httpRuntime enableVersionHeader="false" />
</system.web>
구로역 맛집 시흥동 맛집
이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.
add
...