发新帖

[PHP] [Nginx] tp6个人项目nginx配置项目实例代码(解决伪静态,服务器500错误)

零下一度 2022-8-12 800

tp6个人项目nginx配置项目实例代码(解决伪静态,服务器500错误),Nginx下UEditor服务器地址出错500


server {
        listen 80 default_server reuseport;
        server_name _;
        root  /home/wwwroot/tp6/public;
        index  index.php index.html index.htm;
        location / {
            if (!-e $request_filename) {
                rewrite ^/index.php(.*)$ /index.php?s=$1 last;
                rewrite ^(.*)$ /index.php?s=$1 last;
                break;
            }
        }
        location ~ \.php$ {
            root          /home/wwwroot/tp6/public;
            fastcgi_pass  127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
            include        fastcgi_params;
        }
    }



转载:https://www.jianshu.com/p/7de78f07a312


最新回复 (0)
返回
零下一度
主题数
928
帖子数
0
注册排名
1