thinkphp 伪静态 自定义后缀

Posted 两只小蜜蜂啊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkphp 伪静态 自定义后缀相关的知识,希望对你有一定的参考价值。

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        
<rewrite>
 <rules>
<rule name="已导入的规则 1" stopProcessing="true">
 <match url="^(.*).shtml$" />
 <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>

 

以上是关于thinkphp 伪静态 自定义后缀的主要内容,如果未能解决你的问题,请参考以下文章

ThinkPHP怎么实现伪静态

ThinkPHP怎么实现伪静态

thinkphp部署服务器后出现404错误

ThinkPHP6.0伪静态使用

thinkphp url生成

thinkphp验证器正则常用规则