Thinkphp IIS 下找不到路由

Posted 乐哈哈1

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Thinkphp IIS 下找不到路由相关的知识,希望对你有一定的参考价值。

首先安装

urlrewrite2

https://www.microsoft.com/en-us/download/details.aspx?id=7435

 

然后在站点下创建

web.config

内容如下:

<?xml version="1.0" encoding="utf-8"?>  
<configuration>  
    <system.webServer>  
        <rewrite>  
            <rules>  
                <rule name="OrgPage" stopProcessing="true">  
                    <match url="^(.*)$" />  
                    <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 IIS 下找不到路由的主要内容,如果未能解决你的问题,请参考以下文章

thinkphp5z

如何解决ubuntu下找不到libgtk-x11-2.0.so.0

thinkphp在iis下如何写规则url重写

在生产模式 Electron + Angular 下找不到 sqlite 文件

IIS7和IIS8环境下 ThinkPHP专用URL Rewrite伪静态规则

在调试模式下找不到此可执行文件的有效配置文件