Linux .htaccess 파일을 이용해서 404 not found 에러 처리
페이지 정보
본문
홈페이지 접속시 페이지를 찾을수 없는 경우 호스팅 회사에서 기본으로 제공하는 404 에러 페이지가 뜸니다.
이것을 지정한 페이지로 보여지게 하는 방법입니다.
1. .htaccess 파일 수정
아래 2가지 방법중 하나를 선택해서 .htaccess 에 추가합니다.
ErrorDocument 404 /404.html ### 404에러시 404.html 로 페이지 이동
ErrorDocument 404 / ### 404에러시 메인으로 이동
2. 404.html 파일생성
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<script>
alert("페이지를 찾을 수 없습니다.");
location.href="/";
</script>
</head>
</html>
참고자료
https://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=qna_function&wr_id=421228
http://www.g-it.kr/bbs/board.php?bo_table=prog_server&wr_id=51
이것을 지정한 페이지로 보여지게 하는 방법입니다.
1. .htaccess 파일 수정
아래 2가지 방법중 하나를 선택해서 .htaccess 에 추가합니다.
ErrorDocument 404 /404.html ### 404에러시 404.html 로 페이지 이동
ErrorDocument 404 / ### 404에러시 메인으로 이동
2. 404.html 파일생성
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<script>
alert("페이지를 찾을 수 없습니다.");
location.href="/";
</script>
</head>
</html>
참고자료
https://www.phpschool.com/gnuboard4/bbs/board.php?bo_table=qna_function&wr_id=421228
http://www.g-it.kr/bbs/board.php?bo_table=prog_server&wr_id=51
댓글목록
등록된 댓글이 없습니다.