2015-09-10 50 views
2

我目前在IIS服務器上的Wordpress根目錄中有默認的web.config文件。在IIS服務器web.config文件中放置<httpProtocol>的位置

<?xml version="1.0" encoding="UTF-8"?> 
<configuration> 
<system.webServer> 
<rewrite> 
    <rules> 
     <rule name="wordpress" patternSyntax="Wildcard"> 
      <match url="*"/> 
       <conditions> 
        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/> 
        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/> 
       </conditions> 
      <action type="Rewrite" url="index.php"/> 
     </rule></rules> 
</rewrite> 
</system.webServer> 
</configuration> 

不過,我想補充的有下面幾行,但我不知道在哪裏將它們添加在:

<httpProtocol> 
    <customHeaders> 
    <add name="X-UA-Compatible" value="IE=9; IE=10; IE=11" /> 
    </customHeaders> 
</httpProtocol> 

這是用來顯示在IE兼容模式的網站。

非常感謝。

回答

4

你應該把它放在文件的system.webServer節點下:

<?xml version="1.0" encoding="UTF-8"?> 
<configuration> 
    <system.webServer> 
     <rewrite> 
      <rules> 
      <rule name="wordpress" patternSyntax="Wildcard"> 
       <match url="*"/> 
        <conditions> 
         <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/> 
         <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/> 
        </conditions> 
       <action type="Rewrite" url="index.php"/> 
      </rule> 
      </rules> 
     </rewrite> 
     <!-- PUT IT HERE --> 
     <httpProtocol> 
      <customHeaders> 
      <add name="X-UA-Compatible" value="IE=9; IE=10; IE=11" /> 
      </customHeaders> 
     </httpProtocol> 
    </system.webServer> 
</configuration> 
+0

啊,這似乎已經做到了。非常感謝您的幫助。 – virs90

+0

沒有問題,你可以標記答案是正確的,因爲它的工作?謝謝。 – Celt

相關問題