ホーム
【 .htaccess 】の記述例
以下は代表的な「.htaccess」の記述の一例です。
- 「.htaccess」の制御は配下にあるサブディレクトリへも影響します。
 - サブディレクトリに矛盾する明記があった場合には、サブディレクトリにある明記が優先されます。
 
CGIを任意のディレクトリで有効にする
| 
 DirectoryIndex index.html Options -Indexes Options +ExecCGI AddType application/x-httpd-cgi .cgi .pl  | 
SSIを任意のディレクトリで有効にする
| 
 Options +Includes AddType text/html shtml AddHandler server-parsed shtml | 
任意のディレクトリで“index.html”を優先して表示させる
| DirectoryIndex index.html index.php index.htm | 
以上が「.htacceass」の代表的な記述例となります。