使用 301 转发
server
{
listen 80;
#listen [::]:80;
server_name blog.liuguofeng.com ;
return 301 https://blog.liuguofeng.com$request_uri;
}
参考文献
学习日志 LIUGUOFENG
使用 301 转发
server
{
listen 80;
#listen [::]:80;
server_name blog.liuguofeng.com ;
return 301 https://blog.liuguofeng.com$request_uri;
}
参考文献
ThinkPHP 5 部署在了LAMP/LNMP 环境上很有可能出现 Error 500 的情况,这个时候需要开启 php 错误提示来判断是否是因为设置了open_basedir 选项出错。 Continue reading ThinkPHP 5 LNMP PHP 7 环境 服务器 Error 500 错误
使用的 LNMP 一键安装包
Nginx 虚拟主机配置文件所在目录:/usr/local/nginx/conf/vhost/
Nginx 主配置文件在:/usr/local/nginx/conf/nginx.conf
打开相应 conf 配置文件,添加
Continue reading Nginx 使用一些配置