특정 가상 호스트에 대해서만 Apache 시작 페이지를 비활성화하시겠습니까?

특정 가상 호스트에 대해서만 Apache 시작 페이지를 비활성화하시겠습니까?

Centos 7 및 Apache 2.4를 실행합니다. 가상 호스트를 사용하여 저장소를 설정하면서 index.html문서 루트에 파일이 아닌 디렉터리와 디렉터리를 표시할 수 있기를 원합니다 . 하지만 브라우저에서 액세스하면 Apache 테스트 페이지가 나타납니다. 그래서 찾아보니 /etc/httpd/conf.d/welcome.conf내가 해야 할 일은 모든 줄을 주석 처리하는 것뿐이었습니다(테스트해 본 결과 광고한 대로 작동했습니다). 하지만 저는 이 단일 가상 호스트가 아닌 모든 사이트에서 이 기능을 유지하고 싶습니다.

가상 호스트별로 환영 페이지를 비활성화하는 방법은 무엇입니까?

[michael@mybox main]$ cat /etc/httpd/conf.d/welcome.conf
#
# This configuration file enables the default "Welcome" page if there
# is no default index page present for the root URL.  To disable the
# Welcome page, comment out all the lines below.
#
# NOTE: if this file is removed, it will be restored on upgrades.
#
<LocationMatch "^/+$">
    Options -Indexes
    ErrorDocument 403 /.noindex.html
</LocationMatch>

<Directory /usr/share/httpd/noindex>
    AllowOverride None
    Require all granted
</Directory>

Alias /.noindex.html /usr/share/httpd/noindex/index.html
Alias /noindex/css/bootstrap.min.css /usr/share/httpd/noindex/css/bootstrap.min.css
Alias /noindex/css/open-sans.css /usr/share/httpd/noindex/css/open-sans.css
Alias /images/apache_pb.gif /usr/share/httpd/noindex/images/apache_pb.gif
Alias /images/poweredby.png /usr/share/httpd/noindex/images/poweredby.png
[michael@mybox main]$

답변1

적절한 가상 호스트에서 재정의

<LocationMatch "^/+$">
    Options +Indexes
</LocationMatch>

관련 정보