Linux9 5 配置httpd支援php

2022-02-12 09:01:31 字數 531 閱讀 8850

配置httpd支援php,apache呼叫了php的模組,使得httpd解析php

httpd主配置檔案/usr/local/apache2.4/conf/httpd.conf

vim /usr/local/apache2.4/conf/httpd.conf //修改以下4個地方

servername 注釋井號去掉

require all denied    403的原因 ,改成granted。

directoryindex index.html index.php   正價針對php的索引,如果乙個站點預設頁為index.php,那麼就得加上這個index.php的支援

[root@chy002 php]# vi /usr/local/apache2.4/htdocs/1.php

<?php

phpinfo();

?>

一定要禁用iptables,否則解析不到1.php

/usr/local/apache2.4/bin/apachectl -t //測試語法

Linux下配置APACHE支援PHP環境

找到 tgz 在後面新增 php php 使apcche支援php php source php5 找到 directoryindex index.html 新增 directoryindex index.html index.php 找到 servername www.example.com 80...

Linux下PHP支援MSSql的配置

因為專案以前的資料庫為sqlserver mssql 客戶希望不要換資料庫。在當今客戶就是上帝的理念下,於是只能採用linux下php操作mssql。由於之前沒什麼經驗,甚至可以說是第一次。於是在網上找了很多linux下php配置mssql的資料,其中不得不說錯誤太多,自己做了很多實驗,最終還是完美...

Linux下配置APACHE支援PHP環境

編輯 usr local apache2 conf httpd.conf 檔案時要注意 找到 在後面新增 找到 ifmodule dir module directoryindex index.html ifmodule 新增 ifmodule dir module directoryindex i...