Wednesday 14 March 2018

Replace Server from response header from IIS7 + in asp.net web.config

/////////////////

Step 1.  Download URLRewrite from microsoft server
 link for

·         English: WebPI / x86 / x64

for more details please visit at -
https://www.iis.net/downloads/microsoft/url-rewrite

Step 2.


<system.webServer>
    <rewrite>
      <outboundRules>
        <rule name="Strip Headers">
          <match serverVariable="RESPONSE_SERVER" pattern=".*" />
          <action type="Rewrite" value="ACIWRM" replace="true" />
          <conditions>
          </conditions>
        </rule>
      </outboundRules>
    </rewrite>
  </system.webServer>

No comments:

Post a Comment

Excel Sort values in ascending order using function TEXTJOIN

 Excel ::  Text ::  1,3,5,2,9,5,11 Result :: 1,2,3,5,5,9,11 Formula ::     TEXTJOIN ( ",",1,SORT(MID(SUBSTITUTE( A1 ,","...