[php] 일본어 홈페이지를 만들기 위한 .htaccess 기본 설정 > 팁앤테크

본문 바로가기
사이트 내 전체검색

팁앤테크

[php] 일본어 홈페이지를 만들기 위한 .htaccess 기본 설정

페이지 정보

본문

일본어는 크게 UTF-8, Shift_JIS, EUC-JP로 구분이 되서 언어 세팅을 합니다..

추세는 UTF-8이지만 하나만을 고집할 수만 없는 실정입니다..
이메일 수신을 못할수도 있는 경우가 생기기 때문입니다..

최대한 서버설정과 홈페이지 언어의 설정을 마추기 위해서 .htaccess 기본 설정을 수정해 봅니다..

UTF-8 で作成・保存して UTF-8 で表示させる場合
*注 php5 のみを記述する場合は <IfModule> タグは不要です。
# PHP5.
<IfModule mod_php5.c>
php_flag output_buffering Off
php_value output_handler none
php_value default_charset UTF-8
php_value mbstring.language japanese
php_flag mbstring.encoding_translation On
php_value mbstring.http_input auto
php_value mbstring.http_output UTF-8
php_value mbstring.internal_encoding UTF-8
php_value mbstring.substitute_character none
</IfModule>
# PHP4.
<IfModule mod_php4.c>
php_flag output_buffering Off
php_value output_handler none
php_value default_charset UTF-8
php_value mbstring.language japanese
php_flag mbstring.encoding_translation On
php_value mbstring.http_input auto
php_value mbstring.http_output UTF-8
php_value mbstring.internal_encoding UTF-8
php_value mbstring.substitute_character none
</IfModule>

UTF-8 で作成・保存して Shift_JIS で表示させる場合
# PHP5.
<IfModule mod_php5.c>
php_flag output_buffering On
php_value output_handler mb_output_handler
php_value default_charset Shift_JIS
php_value mbstring.language japanese
php_flag mbstring.encoding_translation On
php_value mbstring.http_input auto
php_value mbstring.http_output SJIS
php_value mbstring.internal_encoding UTF-8
php_value mbstring.substitute_character none
</IfModule>
# PHP4.
<IfModule mod_php4.c>
php_flag output_buffering On
php_value output_handler mb_output_handler
php_value default_charset Shift_JIS
php_value mbstring.language japanese
php_flag mbstring.encoding_translation On
php_value mbstring.http_input auto
php_value mbstring.http_output SJIS
php_value mbstring.internal_encoding UTF-8
php_value mbstring.substitute_character none
</IfModule>

EUC-JP で作成・保存して EUC-JP で表示させる場合
# PHP5.
<IfModule mod_php5.c>
php_flag output_buffering Off
php_value output_handler none
php_value default_charset EUC-JP
php_value mbstring.language japanese
php_flag mbstring.encoding_translation On
php_value mbstring.http_input auto
php_value mbstring.http_output EUC-JP
php_value mbstring.internal_encoding EUC-JP
php_value mbstring.substitute_character none
</IfModule>
# PHP4.
<IfModule mod_php4.c>
php_flag output_buffering Off
php_value output_handler none
php_value default_charset EUC-JP
php_value mbstring.language japanese
php_flag mbstring.encoding_translation On
php_value mbstring.http_input auto
php_value mbstring.http_output EUC-JP
php_value mbstring.internal_encoding EUC-JP
php_value mbstring.substitute_character none
</IfModule>

EUC-JP で作成・保存して Shift_JIS で表示させる場合
# PHP5.
<IfModule mod_php5.c>
php_flag output_buffering On
php_value output_handler mb_output_handler
php_value default_charset Shift_JIS
php_value mbstring.language japanese
php_flag mbstring.encoding_translation On
php_value mbstring.http_input auto
php_value mbstring.http_output SJIS
php_value mbstring.internal_encoding EUC-JP
php_value mbstring.substitute_character none
</IfModule>
# PHP4.
<IfModule mod_php4.c>
php_flag output_buffering On
php_value output_handler mb_output_handler
php_value default_charset Shift_JIS
php_value mbstring.language japanese
php_flag mbstring.encoding_translation On
php_value mbstring.http_input auto
php_value mbstring.http_output SJIS
php_value mbstring.internal_encoding EUC-JP
php_value mbstring.substitute_character none
</IfModule>

댓글목록

등록된 댓글이 없습니다.

Total 828건 1 페이지
  • RSS
팁앤테크 목록
번호 제목 글쓴이 조회 날짜
828 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 2671 03-21
827 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 3136 02-23
826 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 29721 11-02
825 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 33008 07-10
824 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 42137 04-06
823 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 30761 02-21
822 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 35344 12-31
821 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 29865 12-24
820 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 29696 12-04
819 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 32270 10-17
818 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 31127 10-02
817 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 54081 08-04
816 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 29637 08-04
815 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 39855 08-03
814 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 40105 07-08
813 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 68076 07-08
812 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 81838 07-06
811 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 31003 06-09
810 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 36378 06-03
809 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 34749 04-16
808 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 35355 03-29
807 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 29918 03-26
806 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 37009 03-12
805 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 31934 03-10
804 제로쪽지보내기 홈페이지 자기소개 아이디로 검색 전체게시물 53650 03-03

검색

회원로그인

회원가입

사이트 정보

株式会社YHPLUS / 대표 : ZERO
〒140-0011 東京都品川区東大井2-5-9-203
050-5539-7787
오픈카카오톡 (YHPLUS) :
https://open.kakao.com/o/slfDj15d

접속자집계

오늘
4,897
어제
10,353
최대
431,155
전체
6,568,259
Copyright (c) 株式会社YHPLUS. All rights reserved.