Linux Apache Server로 웹서버를 사용하고
클라이언트 브라우저에서 한글이 깨져서 나올 때
두 가지 설정만 해주면 해결 됩니다.
1. 해당 html 페이지 <head>...</head> 사이에 아래 문장을 추가 해 줍니다.
인코딩을 한글로 하겠다는 뜻 입니다.
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr" >
2. 리눅스 httpd.conf 파일을 수정 해 줍니다.
보통 httpd.conf 파일은 아파치 설치해 놓은 곳에 xxx/apache/conf/httpd.conf 위치에 있죠~ㅎ
못 찾으셨다면
# find / -name httpd.conf -print
명령어로 찾아보셈~
AddDefaultCharset UTF-8
이렇게 된 것을
AddDefaultCharset off
로 바꿔줍니다.
인코딩을 따로 지정하지 않고
모두 사용하겠다는 뜻 입니다.
강력한 기능입니다~^^
그리고 마지막으로
# service httpd restart
로 아파치 웹서버를 재시작 해 줍니다.'Linux > Error Solution' 카테고리의 다른 글
-bash: /data2/build/bin/gcc4.1.1/bin/gcc: 그런 파일이나 디렉토리가 없음 (1) | 2009.03.07 |
---|---|
mysql 에러 [libmysqlclient.so.15] (0) | 2008.05.14 |
Existing lock /var/run/yum.pid: another copy is running. Aborting (1) | 2008.05.04 |
[Errno 4] IOError: <urlopen error ... Trying other mirror .... (1) | 2008.04.18 |
[glibc 에러 메세지] you must configure in a separate build directory (1) | 2008.04.15 |