본문 바로가기
Server | Network

Apache2.x 에서 html 확장자를 php로 인식시키기

by 두루물 2010. 11. 11.

/etc/apache2의 서로 링크되어 있는 파일이므로 mods-enabled 이나 mods_available 중 아무거나
php5.conf 파일에 AddType을 수정(없으면 추가),확장자를 추가하면 된다.

<IfModule mod_php5.c>

  AddType application/x-httpd-php .php .phtml .php3 .php4 .php5 .html .htm
 # AddType application/x-httpd-php-source .phps

</IfModule>


OR

    <FilesMatch "\.htm(l)$">
    SetHandler application/x-httpd-php
    </FilesMatch>