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 [후니의 블로그]
'Works > Apache' 카테고리의 다른 글
Cband 관련 Warning 로그 (0) | 2017.07.03 |
---|---|
Apache 2.4.x 에 mod_url 설치 (1) | 2017.06.20 |
configure: error: pcre-config for libpcre not found. (0) | 2017.05.30 |
[apche 1.3.x | 2.0.x 2.2 x.2.4.x ] 아파치 버전별 차이점 (0) | 2017.03.30 |
아파치 컴파일 옵션 확인하기 (0) | 2016.11.30 |