2
Запобігати перезаписуванню правил URL-адреси у підкаталогах у IIS7
У мене налаштування перезапису URL-адрес для чистих URL-адрес у CMS, і моя 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> …
11
iis
iis-7
rewrite
url
web.config