2
IIS7의 하위 디렉터리에서 URL 다시 쓰기 규칙이 상속되지 않도록 방지
CMS에서 깨끗한 URL에 대한 URL 다시 쓰기 설정이 있고 web.config는 다음과 같습니다. <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="Clean URLs" stopProcessing="true"> <match url="^([^/]+)/?$" /> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> </conditions> <action type="Rewrite" url="?id={R:1}" /> </rule> </rules> </rewrite> </system.webServer> </configuration> 기본적으로 깨끗한 URL …
11
iis
iis-7
rewrite
url
web.config