Home  >  Article  >  PHP Framework  >  Solve the problem of 404 NOT FOUND after Thinkphp5+ is deployed to Pagoda LNMP

Solve the problem of 404 NOT FOUND after Thinkphp5+ is deployed to Pagoda LNMP

藏色散人
藏色散人forward
2021-02-22 14:10:453388browse

下面由thinkphp教程栏目给大家介绍解决Thinkphp5+部署到宝塔LNMP后404 NOT FOUND的问题,希望对需要的朋友有所帮助!

 Solve the problem of 404 NOT FOUND after Thinkphp5+ is deployed to Pagoda LNMP

宝塔面板引入Thinkphp 5 等框架式  伪静态导致404

在网站- 域名设置 - 伪静态 处添加代码:

if (!-d $request_filename){
set $rule_0 1$rule_0;
}
if (!-f $request_filename){
set $rule_0 2$rule_0;
}
if ($rule_0 = "21"){
rewrite ^/(.*)$ /index.php/$1 last;
}

The above is the detailed content of Solve the problem of 404 NOT FOUND after Thinkphp5+ is deployed to Pagoda LNMP. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:csdn.net. If there is any infringement, please contact admin@php.cn delete