본문 바로가기
Server/Web

웹페이지 접속 시 html , jsp 우선순위 설정

by 얽디 2021. 11. 30.

설정 전

#vi /etc/httpd/conf/httpd.conf

<IfModule dir_module>

DirectoryIndex index.html

</IfModule>

 

설정 후  -> jsp 먼저 접속됨.

<IfModule dir_module>

DirectoryIndex index.jsp index.html

</IfModule>

#apachectl restart

댓글