404 Not Found ÆäÀÌÁö ¹Ù²Ù±â |
±Û ¾´ ÀÌ |
linux |
³¯ Â¥ |
2003³â 01¿ù 15ÀÏ 18½Ã 55ºÐ 24ÃÊ |
º» ¹® |
Q. apacheÀÇ ¹öÀüÀ» º¸ÀÌÁö ¾Ê°Ô ÇÏ·Á¸é?
A. httpd.conf¿¡ ´ÙÀ½À» Ãß°¡ÇÑ´Ù.
ServerTokens ProductOnly
ErrorDocument 404 "Not Found
1) plain text
ErrorDocument 500 "The server made a boo boo.
# n.b. the (") marks it as text, it does not get output
2) local redirects
ErrorDocument 404 /missing.html
# to redirect to local url /missing.html
#ErrorDocument 404 /cgi-bin/missing_handler.pl
# n.b. can redirect to a script or a document using server-side-includes.
#
3) external redirects
ErrorDocument 402 http://other.server.com/subscription_info.html
ÀÌ°Ô Á» ¹Ô¹ÔÇØ¼ ½ÈÀº »ç¶÷Àº ´ÙÀ½°ú °°ÀÌ redirection½ÃÄѵµ µÈ´Ù. ¹°·Ð missing.htmlÀº DocumentRoot ¾Æ·¡¿¡ Á¸ÀçÇØ¾ß ÇÑ´Ù.
ErrorDocument 404 /missing.html (urlÀÔ·Â)
|
|
|
|