溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

LNMP搭建3:測(cè)試PHP解析

發(fā)布時(shí)間:2020-05-29 14:31:07 來源:網(wǎng)絡(luò) 閱讀:972 作者:Rachy1989 欄目:web開發(fā)

記得測(cè)試之前要關(guān)閉防火墻并禁止開機(jī)啟動(dòng)?。。?!

[root@centos6 local]# iptables -F

[root@centos6 local]# iptables-save

# Generated by iptables-save v1.4.7 on Fri Jan 13 00:27:50 2017

*filter

:INPUT ACCEPT [9:680]

:FORWARD ACCEPT [0:0]

:OUTPUT ACCEPT [6:672]

COMMIT

# Completed on Fri Jan 13 00:27:50 2017

[root@centos6 local]# chkconfig iptables off

1.安裝好LNMP之后,使用瀏覽器訪問服務(wù)器IP可以看到Nginx的歡迎頁,證明安裝成功。

LNMP搭建3:測(cè)試PHP解析

2.這個(gè)歡迎頁原文件在/nginx/html/目錄下,這個(gè)目錄下的文件可以直接被訪問。

[root@centos6 nginx]# cd html

[root@centos6 html]# ls

50x.html  index.html

[root@centos6 html]# cat index.html |less

<!DOCTYPE html>

<html>

<head>

<title>Welcome to nginx!</title>

<style>

   body {

       width: 35em;

       margin: 0 auto;

       font-family: Tahoma, Verdana, Arial, sans-serif;

   }

</style>

</head>

<body>

<h2>Welcome to nginx!</h2>

<p>If you see this page, the nginx web server is successfully installed and

working. Further configuration is required.</p>

<p>For online documentation and support please refer to

<a >nginx.org</a>.<br/>

Commercial support is available at

……

3.要想解析php文件,需要編輯Nginx配置文件

[root@centos6 nginx]# vim /usr/local/nginx/conf/nginx.conf

4.去掉php配置前面的注釋符#,并更改網(wǎng)站根目錄

……

# proxy the PHP scripts to Apache listening on 127.0.0.1:80

       #

       #location ~ \.php$ {

       #    proxy_pass   http://127.0.0.1;

       #}

       # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

       #

       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;

       }

……

4.重新加載nginx配置文件:

[root@centos6 html]# nginx -s reload

5.在網(wǎng)站根目錄/usr/local/nginx/html/下添加一個(gè)info.php文件:

[root@centos6 html]# vim info.php

<?php

phpinfo();

?>

6.使用瀏覽器看到已經(jīng)可以解析PHP

LNMP搭建3:測(cè)試PHP解析

7.使用curl測(cè)試,默認(rèn)訪問的是index.html

[root@centos6 html]# curl localhost

8.使用curl測(cè)試info.php

[root@centos6 html]# curl localhost/info.php


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI