IIS和Yii2漂亮的URL

时间:2015-05-26 23:22:04

标签: .htaccess iis web-config yii2

IIS的.htaccess等价物是什么,可以在IIS上的Yii2中启用漂亮的URL。实际上,我不知道如何使用web.conf来允许这些网址。

1 个答案:

答案 0 :(得分:9)

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