반응형
아파치에서 Error 페이지를 Redirect 할 수 있는 간단한 방법을 소개 하겠습니다.
기본적으로 httpd.conf 파일을 수정하게 되면 전체로 적용 됩니다.
<httpd.conf>
# Some examples:
#ErrorDocument 500 “The server made a boo boo.”
#ErrorDocument 404 /missing.html
#ErrorDocument 404 “/cgi-bin/missing_handler.pl”
#ErrorDocument 402 http://www.example.com/subscription_info.html
#
ErrorDocument 400 https://asecurity.dev/
ErrorDocument 402 https://asecurity.dev/
주석아래 2문장을 추가하게 되면, 400 에러와 402에러는 기본 페이지로 돌아가도록 설정됩니다.
만약 특정 페이지에 적용하고 싶다면, .htaccess에 넣으면 됩니다.
<.htaccess>
<IfModule mod_rewrite.c>
RewriteEngine On
ErrorDocument 400 https://asecurity.dev/
ErrorDocument 402 https://asecurity.dev/
반응형
'Linux' 카테고리의 다른 글
PART 1 INSTALL ELASTICSEARCH 6 CLUSTER FOR CENTRALIZED SYSLOG (0) | 2020.11.04 |
---|---|
Ubuntu Firewall setting By UFW (0) | 2020.11.04 |
Log Analysis -tr, awk, uniq, sort (0) | 2020.11.04 |
Linux - Crontab How to use (0) | 2020.11.03 |
ShellScript - /bin/sh: bad interpreter: No such file or directory (0) | 2020.10.29 |