Works/Apache
PHP와 Apache 연동을 위한 httpd.conf 파일 수정
Antamis
2017. 5. 31. 17:36
php : php-5.2.17
apache : httpd-2.2.32
apache/conf/httpd.conf 파일 오픈
<IfModule dir_module>
DirectoryIndex index.html
</IfModule> 이렇게 되어 있는 내용을
<IfModule dir_module>
DirectoryIndex index.html index.htm index.php index.php3
</IfModule> 이렇게 변경
<IfModule mime_module>
………
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
………
</IfModule>
AddType application/x-gzip .gz .tgz 이부분 아래에
AddType application/x-httpd-php .php .html .htm .inc
Addtype application/x-httpd-php-source .phps 이렇게 두줄 추가
출처: http://qkrgns208.tistory.com/68 [후니의 블로그]