美文网首页
LNMP部署TP5后遇到的问题

LNMP部署TP5后遇到的问题

作者: 九歌丶 | 来源:发表于2019-06-10 09:28 被阅读0次

    1. 报错500

    1.1 打开php报错信息

      #修改两个配置文件
      fpm/php.ini
    #设置 display_errors = On
    
      php-fpm.conf
    #设置 php_flag[display_errors] = on
    

    2. 如果报的这个错:open_basedir restriction in effect.

    2.1. 在/usr/local/nginx/conf/vhost/域名.conf/ 添加
    set $basedir "open_basedir=/home/wwwroot/网站根目录/:/tmp/:proc/";

    image.png

    2.2. 进入根目录解锁.user.ini 并删除这个文件,设置了上面一部就没什么用了。
    chattr -i .user.ini
    rm -rf .user.ini

    2.3. 修改fastcgi.conf

    11566876525_.pic_hd.jpg

    3. 开了伪静态只能进入首页

    还是在刚刚nginx配置文件添加(获取直接修改引入的路由配置文件other.conf为thinkphp.conf)

    location / {
                if (!-e $request_filename){
                    rewrite  ^/(.*)$  /index.php?s=/$1  last;
                }
            }
    
    image.png

    相关文章

      网友评论

          本文标题:LNMP部署TP5后遇到的问题

          本文链接:https://www.haomeiwen.com/subject/vzraxctx.html