IIS и Yii2 красивые URL
Что .htaccess
эквивалентно IIS для включения красивых URL в Yii2 на IIS. На самом деле, я не знаю, что я мог сделать с web.conf
чтобы разрешить эти URL.
1 ответ
Решение
Попробуйте это на вашем web.config и сохраните его в корне
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<directoryBrowse enabled="false" />
<rewrite>
<rules>
<rule name="Hide Yii Index" stopProcessing="true">
<match url="." ignoreCase="false" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile"
ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory"
ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>