「.htaccess」の記述例
以下は代表的な「.htaccess」の記述の一例です。
|
|
■「CGIを任意のディレクトリ内で有効にする」Options +ExecCGI AddType text/html cgi AddHandler cgi-script cgi■「SSIを任意のディレクトリ内で有効にする」Options +Includes AddType text/html shtml AddHandler server-parsed shtml■「任意のディレクトリで”index.html”を優先して表示させる」DirectoryIndex index.html index.php index.htm
■「error_reporting を設定したい」.htaccess で PHP が出力するエラー表示を制御するには E_ALL などの定数は使えないので、ビット値で指定する必要があります。
php_value error_reporting 6135
|
|
以上が「.htacceass」の設定方法となります。 |