반응형
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
반응형
'source' 카테고리의 다른 글
Oracle 고유 제약 조건 및 고유 인덱스 (0) | 2023.04.06 |
---|---|
뉴턴소프트 사용법Asp.net Core Web API에서 Json을 기본값으로 설정하시겠습니까? (0) | 2023.04.06 |
Elastic Search에 JSON 파일 가져오기/인덱스화 (0) | 2023.04.06 |
새 속성 값을 사용하여 프로그래밍 방식으로 WooCommerce 제품 변형을 생성합니다. (0) | 2023.04.06 |
유레카와 쿠베르네테스 (0) | 2023.04.01 |