Apache HTTP Server에 mime type 추가

less than 1 minute read

Apache HTTP Server에 mime type을 추가하려면?

IfModule mime_module에서 AddType type .확장자1 .확장자2를 추가하면 된다.

아래는 예시

<!-- httpd.conf -->
<IfModule mime_module>
    TypesConfig conf/mime.types

    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz

    AddType application/x-httpd-php .php .php3 .inc .ph .htm
    AddType application/x-httpd-php-source .phps
</IfModule>

20210928

Leave a comment