[root@nsBunny~]# yum -y install php*

[root@nsBunny~]# vi /etc/httpd/conf.d/php.conf

<IfModule prefork.c>

LoadModule php5_module modules/libphp5.so

</IfModule>

<IfModule worker.c>

LoadModule php5_module modules/libphp5-zts.so

</IfModule>

########### PHP 4 확장자 호환 설정 ################

#AddType application/x-httpd-php .php4 .php3 .php .htm .html .phtml .ph .inc

#AddType application/x-httpd-php-source .phps

########### PHP5 ########################

AddHandler php5-script .php

AddType text/html .php

####################################################

DirectoryIndex index.php

[root@nsBunny~]# service httpd restart

테스트 폐이지 출력

[root@nsBunny~]# vi /var/www/html/index.php

<html>

<body>

<div style="width: 100%; font-size: 40px; font-weight: bold; text-align: center;">

<?php

print Date("Y/m/d");

?>

</div>

</body>

</html>

http://xxxxxxx.pe.kr/index.php è 확인

+ Recent posts