您好,登录后才能下订单哦!
[root@LNMP ~]# vim /usr/local/nginx/conf/nginx.conf
打开以下PHP 相关项且更改 scripts$fastcgi_script_name;> /usrlocal/nginx/html$fastcgi_script_name;
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html$fastcgi_script_name;
#(scripts$fastcgi_script_name;)
include fastcgi_params;
更改完成以后,保存退出。通过 ip地址可以访问到 nginx 的首页。
如下图:(如果访问不了可以 尝试关掉linux 自带的防火墙 iptables -F)
[root@LNMP ~]# iptables -F
[root@LNMP ~]# cd /usr/local/nginx/html/ # 在此目录下写一个 info.php的脚本
[root@LNMP html]# ls
50x.html index.html
[root@LNMP html]# vim info.php # 编译一个 info.php 脚本
<?php
phpinfo();
?>
通过IP 可以访问到以下内容
至此PHP 解析测试成功。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。