- 詳細
- カテゴリ: リンク不要の記事用カテゴリ
- 参照数: 68523
以下は代表的な「.htaccess」の記述の一例です。
- 「.htaccess」の制御は配下にあるサブディレクトリへも影響します。
- サブディレクトリに矛盾する明記があった場合には、サブディレクトリにある明記が優先されます。
CGIを任意のディレクトリで有効にする
| DirectoryIndex index.html Options -Indexes Options +ExecCGI AddType application/x-httpd-cgi .cgi .pl .pm | 
SSIを任意のディレクトリで有効にする
| Options +Includes AddType text/html shtmlAddHandler server-parsed shtml | 
任意のディレクトリで“index.html”を優先して表示させる
| DirectoryIndex index.html index.php index.htm | 
以上が「.htacceass」の代表的な記述例となります。
 
                                                                                                                        