Centos에서 http의 SSI 문제

Centos에서 http의 SSI 문제

내 httpd.conf는 다음과 같습니다.

- - -

AddType text/html .shtml .html
Options +Includes
AddOutputFilter INCLUDES .shtml .html

DirectoryIndex index.shtml index.html index.php index.html.var

- - -

그리고 여전히 디버그 로그에 옵션 + 포함이 설정되지 않은 것으로 표시됩니다.

[Thu Aug 14 01:14:26 2014] [warn] [client xxx.xxx.xxx.xxx] mod_include: 
Options +Includes (or IncludesNoExec) wasn't set, INCLUDES filter removed.

내 아파치 버전은 2.2이고 Centos 6에서 실행됩니다.

이 문제를 해결하는 방법에 대한 제안 사항이 있습니다.

답변1

수정 사항을 찾았습니다.

문제를 해결하려면 가상 호스트 구성을 사용하십시오.

<Directory "/var/www/html">
    Options Indexes MultiViews Includes
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

<VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot /var/www/html/
    ServerName dummy-host.example.com
    ErrorLog logs/dummy-host.example.com-error_log
    CustomLog logs/dummy-host.example.com-access_log common
</VirtualHost>

내 현재 구성으로.

관련 정보