nginx解析php⽂件设置_nginx解析php ⾸先在nginx配置⽂件打开如下⼏⾏的注释: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;
}
只需要把SCRIPT_FILENAME的⽂件位置更改为如上所⽰即可
然后检测nginx的配置⽂件是否正确,注意每⼀次更改配置⽂件后,都要进⾏此项检测!
[root@lnmp html]# /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx/f syntax is ok
nginx: configuration file /usr/local/nginx/f test is successful
然后重新加载配置⽂件/usr/local/nginx/sbin/nginx -s reload
创建php⽂件:cd /usr/local/nginx/html/
nginx 配置文件创建⽂件内容如下:
cat 2.php
echo "php works";
>
⽤curl解析刚创建的php⽂件:[root@lnmp html]# curl localhost/2.php
php works
说明已经可以正常解析php⽂件了!
若出现php works字样,则表明解析成功!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论