您好,登錄后才能下訂單哦!
php安裝完成后,并不能直接使用,需要進行一些配置
拷貝php配置文件
[root@ly-linux php-5.6.28]# cp php.ini-production /usr/local/php/etc/php.ini
配置apache
[root@ly-linux php-5.6.28]# vim /usr/local/apache2/conf/httpd.conf
<Directory />
Options FollowSymlLinks
AllowOverride None
Order deny,allow
Deny from all // 此行修改 =====> Allow from all
</Directory>
AddType application/x-gzip .gz .tgz
#在下方添加一行
AddType application/x-httpd-php .php
<IfModule dir_module> DirectoryIndex index.html //此行后添加index.htm index.php </IfModule>
找到下方語句
#ServerName www.example.com:80
改成
ServerName localhost:80
保存退出。
檢測配置
[root@ly-linux php-5.6.28]# /usr/local/apache2/bin/apachectl -t
Syntax //說明沒有問題
[root@ly-linux php-5.6.28]# /usr/local/apache2/bin/apachectl start
[root@ly-linux php-5.6.28]# ps aux |grep httpd
#檢測apache是否正常啟動
測試php解析
[root@ly-linux php-5.6.28]# vim /usr/local/apache2/htdocs/1.php
<?php echo "php work"; ?> 保存退出,
[root@ly-linux php-5.6.28]# curl localhost/1.php php work
只有顯示這個才算成功 。如果不流暢,檢測iptables規則
[root@ly-linux php-5.6.28]# iptables -nvL
如果有一些規則,執行
[root@ly-linux php-5.6.28]# iptables -F
[root@ly-linux php-5.6.28]# service iptables save
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。