phpスクリプトのサイト、htmlファイルを「.htaceess」ファイルでphpスクリプトとして設定しているサイトで文字コードにシフトJISもしくはEUCで記述されている場合、phpのversionが5.6以上のサーバーの場合文字化けが発生します。
文字化けが発生した場合下記をお試しください。
SJISの場合
EUCの場合
SJISの場合
output_buffering = Off
magic_quotes_gpc = Off
default_charset = Shift_JIS
[mbstring]
mbstring.language = Japanese
mbstring.internal_encoding = SJIS
mbstring.http_input = auto
mbstring.http_output = SJIS
mbstring.encoding_translation = On
mbstring.detect_order = auto
mbstring.substitute_character = none
EUCの場合
output_buffering = Off
magic_quotes_gpc = Off
default_charset = EUC-JP
[mbstring]
mbstring.language = Japanese
mbstring.internal_encoding = EUC-JP
mbstring.http_input = auto
mbstring.http_output = EUC-JP
mbstring.encoding_translation = On
mbstring.detect_order = auto
mbstring.substitute_character = none
キーワードからよくある質問・マニュアルを検索できます。