nginx访问php文件 an error,Nginx访问PHP提示An error occurred. the page you are looking for is currently unav...

以前一直玩windows,现在被

安装完nginx和PHP等环境后,Nginx访问PHP提示

An error occurred.

Sorry, the page you are looking for is currently unavailable.

Please try again later.

If you are the system administrator of this resource then you should check theerror log for details.

Faithfully yours, nginx.

——最后发现,我犯了个低级错误,PHP没启动。

ngnix中重启php

service php-fpm start

service php-fpm stop

service php-fpm restart

service php-fpm reload

其他可能的错误,来自网络整理:

问题1:仔细检查下 Nginx配置文件,是配置不当造成的!:

比如说,有朋友遇到的出错原因如下:

nginx.conf配置文件有这么一段代码:

include  vhost/*.conf;

它表示包含 vhost 目录下的所有虚拟机配置文件。在语法上,通过 命令 nginx -t 去检测,它是没错的,但是事实上 vhost文件夹是不存的(忘记建立),所以nginx进程虽然能跑起来,但是前端页面展示还是报错的,最后的解决方案 当然是新建 vhost目录即可!

问题2:有朋友把Nginx配置文件配置错了。

参考:https://www.cnblogs.com/debmzhang/p/4194254.html