thinkphp6 IIS伪静态规则设置

锐菱小石头 阅读:416 2021-06-13 10:28:18 评论:0

将以下代码另存为web.config(文件名,后缀为config),上传到网站根目录中,即可生效。


image.png


<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
<rewrite>
 <rules>
 <rule name="OrgPage" stopProcessing="true">
 <match url="(?!/static)(.*)$" ignoreCase="false" />  <!-- 伪静态规则排除目录,一般为图片或静态素材。 -->
 <conditions logicalGrouping="MatchAll">
 <add input="{HTTP_HOST}" pattern="^(.*)$" />
 <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
 <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
 </conditions>
 <action type="Rewrite" url="index.php/{R:1}" />
 </rule>
 </rules>
 </rewrite>
    </system.webServer>
</configuration>


发表评论
搜索
关注我们

扫一扫关注我们,了解最新精彩内容

快捷导航返回顶部
润凌网络
在线留言
联系电话