失落的紀錄

2010-05-15

SlackWare 13 – 啟動 Apache +PHP

分類: Apache,Llinux — 番茄 @ 07:53

啟動 Apache
1.設定開機啟動 Apache

# chmod 755 /etc/rc.httpd

 

2.啟動 Apache

apachectl start

 

3.測試
開啟瀏覽器 http://ip
出現  [ It works! ]  表示正常工作

 

啟動PHP
1.編修 /etc/httpd/httpd.conf 設定檔

# vi   /etc/httpd/httpd.conf
找到
#Include /etc/httpd/mod_php.conf

將#字號去除,變
Include   /etc/httpd/mod_php.conf

找到
DirectoryIndex index.html

在最後面加上 index.php,變成
DirectoryIndex   index.html index.php

找到
Options FollowSymLinks
全部改成
Options -FollowSymLinks

 

3.重新啟動 Apache

apachectl  restat

 

4.測試php

# vi /srv/www/htdocs/2.php
輸入
<?php
  phpinfo();
?>

開啟瀏覽器http://ip/2.php
有顯示php相關資訊表示 php 也有啟動

無迴響

No comments yet.

RSS feed for comments on this post.

Sorry, the comment form is closed at this time.

Powered by WordPress