gpt4 book ai didi

.htaccess - IIS 和 Yii2 漂亮的 URL

转载 作者:行者123 更新时间:2023-12-02 07:06:53 28 4
gpt4 key购买 nike

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>

关于.htaccess - IIS 和 Yii2 漂亮的 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30470618/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com