SDI 콘텐츠가 빠짐, Apache 오류, "제거된 필터 포함"

이 문서에서는 콘텐츠 드롭아웃 및 "제거된 포함 필터"를 나타내는 Apache error.log를 포함하는 Sling 동적 문제에 대한 해결 방법을 제공합니다.

설명 description

환경

  • Adobe Experience Cloud (AEC)
  • AEM(Adobe Experience Manager)

문제

Sling Dynamic Includes(SDI) 콘텐츠 드롭아웃과 Apache error.log는 "Options +Includes(또는 IncludesNoExec)가 vhost(가상 호스트 설명서) 파일에 설정되어 있더라도 [ 1]에 설정되지 않았습니다.

<Directory />    AddType text/html .html    AddOutputFilter INCLUDES .html    Options Indexes FollowSymLinks Includes</Directory>

[ include:warn] AH01374: mod_include: Options +Includes(또는 IncludesNoExec)가 설정되지 않았거나 INCLUDES 필터가 제거되었습니다. /content/page.html

해결 방법 resolution

문서 루트 폴더를 명시적으로 지정하십시오(예: 이 경우 “/var/www/html”, 따옴표 포함).

<Directory “/var/www/html”>    AddType text/html .html    AddOutputFilter INCLUDES .html

Options Indexes FollowSymLinks Includes
</Directory>

recommendation-more-help
3d58f420-19b5-47a0-a122-5c9dab55ec7f