之前一直是使用lnmp一键包,但是访问创建的虚拟主机,并没有出现过的错误:No input file specified.
网上的文章很多,但是都是转载,而且原因也很多,根本不适用
后面在lnmp一键包官网找到解决方案:https://lnmp.org/faq/lnmp-vhost-add-howto.html
这是“防跨目录设置”导致的问题,根据文档,做出修改:
# vi /usr/local/nginx/conf/fastcgi.conf
找到:fastcgi_param PHP_ADMIN_VALUE "open_basedir=$document_root/:/tmp/:/proc/"; 在该行行前添加 #,
删除public目录下.user.ini文件
# chattr -i path to/public/.user.ini
# rm -rf path to/public/.user.ini
我电脑安装双系统(win+deepin),这个项目文件在Windows ntfs文件系统磁盘下, chattr -i path to/public/.user.ini
报错:chattr: 无效的参数 while reading flags on .user.ini
发现不能直接解锁文件,网上帖子说chattr只能用于ext文件系统,于是我在这个命令chattr -i path to/public/.user.ini
加上“-f”:chattr -f -i path to/public/.user.ini
,试了一下,居然成功解锁文件了!
重启nginx,问题解决