【发布时间】:2015-05-26 23:22:04
【问题描述】:
什么是.htaccess 等效的 IIS 以在 IIS 上的 Yii2 中启用漂亮的 URL。确实,我不知道我可以用 web.conf 做什么来允许这些 URL。
【问题讨论】:
标签: .htaccess iis web-config yii2
什么是.htaccess 等效的 IIS 以在 IIS 上的 Yii2 中启用漂亮的 URL。确实,我不知道我可以用 web.conf 做什么来允许这些 URL。
【问题讨论】:
标签: .htaccess iis web-config yii2
在您的 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>
【讨论】:
mydomain.com 用于前端,sub.mydomain.com 用于后端。