解析 PHP
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解析 PHP相关的知识,希望对你有一定的参考价值。
[[email protected] ~]# vim /usr/local/nginx/conf/nginx.conf +65 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; include fastcgi_params; }
[[email protected] ~]# /usr/local/nginx/sbin/nginx -t [[email protected] ~]# /usr/local/nginx/sbin/nginx -s reload
[[email protected] ~]# vim /usr/local/nginx/html/index.php <?php phpinfo(); ?>
访问 192.168.123.102/index.php 看是否能够解析:
以上是关于解析 PHP的主要内容,如果未能解决你的问题,请参考以下文章