[ .htaccess ]で、PHPの設定

2006年12月20日 オフ 投稿者: KYO
Table of Contents

特定のディレクトリ以下のphp.iniの変更方法。
[ .htaccess ]が使用できるなら・・・的なメモ。

出来れば、全ディレクトリに指定したい .htaccess

<IfModule mod_php4.c>
php_flag register_globals Off
php_flag magic_quotes_gpc Off
php_flag magic_quotes_runtime Off
</IfModule>

mbstring関連の設定

<IfModule mod_php4.c>
php_flag display_errors On/Off
php_flag output_buffering On
php_value default_charset EUC-JP
php_value mbstring.language Japanese
php_value mbstring.internal_encoding EUC-JP
php_value mbstring.encoding_translation OFF
php_value mbstring.http_input auto
php_value mbstring.http_output EUC-JP
</IfModule>