lang/php

PHP 이용 웹서버 디렉토리 서비스를 더 깔끔하고 편리하게 이용하기

C/H 2018. 7. 18. 08:30

Requirements

  • The ablity to set the directory index
    디렉토리 인덱스를 사용할 수 있는 관리자
  • PHP 5.4 or later
  • Composer

Installation

composer require projectcleverweb/lastautoindex

Setting

# Apache
Options -Indexes
DirectoryIndex index.php index.html index.htm /path/to/LastAutoIndex/index.php

# Nginx
autoindex off;
index index.php index.html index.htm /path/to/LastAutoIndex/index.php;

# LightHttpd
index-file.names += ( "index.php", "index.html", "index.htm", "/path/to/LastAutoIndex/index.php" )

Conclosion

굳이 인덱스 서비스를 이용한다면 좋은 선택이다.
하지만 보안을 생각한다면 인덱스 서비스를 사용하지 않는게 좋다.

반응형