ApacheでSSIを利用するための覚書。
ドキュメントルートは下記のように設定してあると仮定。
DocumentRoot "c:/Program Files/Apache Group/Apache2/htdocs"
httpd.confを下記のように修正。
AddType text/html .shtml ← #を削除
AddOutputFilter INCLUDES .shtml ← #を削除
<Directory "c:/Program Files/Apache Group/Apache2/htdocs">
・・・・・・・・
Options IncludesNoExec
</Directory>
IncludeでもSSIは利用可能だが、セキュリティの安全を高めるためにIncludesNoExecが良い。
#AddType text/html .shtml ← #を削除しない
AddOutputFilter INCLUDES .html ← #を削除し、shtmlをhtmlへ)
<Directory "c:/Program Files/Apache Group/Apache2/htdocs">
・・・・・・・・
Options IncludesNoExec
</Directory>
No comments yet.
改行と段落タグは自動で挿入されます。
メールアドレスは表示されません。