1. ServerName을 아래와 같이 수정해준다.
#ServerName www.example.com:80
ServerName 127.0.0.1:80
2. 아래와 같이 수정한다.
<IfModule dir_module>
DirectoryIndex index.html index.htm index.php index.php3
</IfModule>
3. 아래에 아래 두줄을 추가한다.
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddType application/x-httpd-php .php .html. htm .inc
AddType application/x-httpd-php-source .phps
4. 맨 아래에 추가한다.
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>
'DEV > Linux' 카테고리의 다른 글
Crontab php 실행시키기 (0) | 2021.03.04 |
---|---|
Linux 쉘 메세지 언어 변경 (0) | 2017.10.12 |
[CentOS 7] Maven 컴파일 (0) | 2017.08.29 |
Linux war import (0) | 2017.08.24 |
[CentOS 7] Mariadb 원격접속허용 (0) | 2017.08.24 |