IIS 和 Yii2 漂亮 URL

IIS and Yii2 pretty URL

IIS 的 .htaccess 等效项是什么,以便在 IIS 上的 Yii2 中启用漂亮的 URL。事实上,我不知道我可以用 web.conf 做什么来允许这些 URL。

在您的 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>