docs(common): Remove .html from API pages that end with .resources (#1306)

This commit is contained in:
Dimo Dimov 2023-02-03 16:50:40 +02:00 коммит произвёл GitHub
Родитель a53b9085d3
Коммит dadaf675a0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 11 добавлений и 5 удалений

Просмотреть файл

@ -68,10 +68,6 @@
<match url="^$" />
<action type="Redirect" url="introduction" />
</rule>
<rule name="redirect_resources" enabled="true" stopProcessing="true">
<match url="(.*)\.Resources\.html$" />
<action type="None" />
</rule>
<rule name="remove_html_extension" enabled="true" stopProcessing="true">
<match url="(.*)\.html$" />
<action type="Redirect" url="{R:1}" />
@ -105,5 +101,15 @@
<error statusCode="404" path="40x.html" />
</httpErrors>
</system.webServer>
<location path="api">
<system.webServer>
<security>
<requestFiltering>
<fileExtensions>
<remove fileExtension=".resources" />
</fileExtensions>
</requestFiltering>
</security>
</system.webServer>
</location>
</configuration>