source

IIS 서버 web.config 파일의 위치

manycodes 2023. 4. 6. 21:47
반응형

IIS 서버 web.config 파일의 위치

현재 IIS 서버의 Wordpress 루트 디렉토리에 기본 web.config 파일이 있습니다.

<?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 호환성 모드로 웹 사이트를 표시하기 위해 사용합니다.

대단히 고맙습니다.

그 밑에 넣으셔야 합니다.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>

언급URL : https://stackoverflow.com/questions/32496066/where-to-place-httpprotocol-in-iis-server-web-config-file

반응형