Linux

apache2 httpd 응답페이지 변경하기

Naan 2021. 10. 26. 19:49
320x100

 

page not found 이렇게 출력 되는 부분을 변경을 하고 싶다면

apache2.conf 나 httpd.conf 를 아래와 같이 수정 해주면 된다.

ErrorDocument 500 /index.html
ErrorDocument 500 /index.html
ErrorDocument 500 /index.html
ErrorDocument 404 /index.html
ErrorDocument 401 /index.html
ErrorDocument 403 /index.html

아파치 재시작 해주면

index.html 이나 내가 보여주고 싶은 페이지를 설정 하면 해당 페이지로 가진다.

320x100