2017-11-21 4 views
0

こんにちは、私はweb.configを使ってX-Powered-Byヘッダを削除しようとしています。 これは私のweb.configファイルには、これまでウェブ設定を使用してX-Powered-Byヘッダを削除する方法

<?xml version="1.0" encoding="utf-8" ?> 
<configuration> 
    <system.webServer> 
     <rewrite> 
      <rules> 
       <rule name="Rule" stopProcessing="true"> 
        <match url="^(.*)$" ignoreCase="false" /> 
         <conditions> 
          <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> 
          <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /> 
          <add input="{URL}" pattern="^/favicon.ico$" ignoreCase="false" negate="true" /> 
         </conditions> 
         <action type="Rewrite" url="index.php/{R:1}" appendQueryString="true" /> 
       </rule> 
      </rules> 
     </rewrite> 
<httpProtocol> 
    <customHeaders> 
    <clear /> 
     <remove name="X-Powered-By" /> 
    </customHeaders> 
</httpProtocol> 
    </system.webServer> 
</configuration> 

あるしかし、私は確認したら、それはまだ私にX-パワード・バイ....

答えて

関連する問題