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/";
2.2. 进入根目录解锁.user.ini 并删除这个文件,设置了上面一部就没什么用了。
chattr -i .user.ini
rm -rf .user.ini
2.3. 修改fastcgi.conf
11566876525_.pic_hd.jpg3. 开了伪静态只能进入首页
还是在刚刚nginx配置文件添加(获取直接修改引入的路由配置文件other.conf为thinkphp.conf)
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php?s=/$1 last;
}
}
image.png
网友评论