• 确博日记
  • 工作时间:09:30 pm-06:24 pm

thinkphp6 IIS伪静态规则设置

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


<?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>

  • 在线列表
    1589813

  • 在线提交