[关闭]
@zoand 2018-08-03T14:36:54.000000Z 字数 1175 阅读 1389

lnmp环境安装thinkphp5.1入口目录public

php lnmp thinkphp5


一。环境

  1. CentOS7.2-amd64 + lnmp 1.5 + thinkphp5.1
  2. lnmp 事先已经添加 vhost 目录于 /home/wwwroot/www.xxx.com 中;
  3. 安装 vhost 时已经选择 rewrite/thinkphp.conf 重写规则配置及 enable-php-pathinfo.conf 配置;

二。基于上述安装环境下,调整web根目录到 public

1). 先修改域名对应的配置 /conf/vhost/www.xxx.com.conf

  1. server
  2. {
  3. listen 443 ssl http2;
  4. #listen [::]:443 ssl http2;
  5. server_name www.xxx.com ;
  6. index index.html index.htm index.php;
  7. root /home/wwwroot/www.xxx.com/public;
  8. ......
  9. }
  10. server
  11. {
  12. listen 80;
  13. #listen [::]:80;
  14. server_name api.nasm.io ;
  15. index index.html index.htm index.php default.html default.htm default.php;
  16. root /home/wwwroot/www.xxx.com/public;
  17. return 301 https://$server_name$request_uri;
  18. }

2). 修改 /usr/local/nginx/conf/fastcgi.conf 中的:

  1. fastcgi_param REDIRECT_STATUS 200;
  2. fastcgi_param PHP_ADMIN_VALUE "open_basedir=$document_root/../:/tmp/:/proc/";

3.1). 删除 /home/wwwroot/www.xxx.com/.user.ini ,要先解除权限锁定

  1. //原内容为:
  2. open_basedir=/home/wwwroot/www.xxx.com/:/tmp/:/proc/
  3. > chattr -i .user.ini

3.2). 新建 /home/wwwroot/www.xxx.com/public/.user.ini,再添加权限锁定

  1. open_basedir=/home/wwwroot/www.xxx.com/public/:/tmp/:/proc/
  2. > chattr +i .user.ini

4). 修改 php.ini

  1. `cgi.fix_pathinfo = 0` 改为 `cgi.fix_pathinfo = 1;`

5). 重启环境:

  1. > lnmp nginx reload
  2. > lnmp restart

三。隐藏 public/index.php 入口文件

如果按上述修改,已经自动支持隐藏 index.php 入口文件了。

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注