令和でもXAMPPでSSIのインクルードを使う方法
ローカルホストとしてお馴染みのXampp
新規インストールするたびSSIがHTMLで使えない。
設定が必要なことを忘れているのです。
C:\xampp\apache\conf
内の
httpd.conf
を開く
446行目~447行目の
1 2 |
AddType text/html .shtml AddOutputFilter INCLUDES .shtml |
を
1 2 |
AddType text/html .shtml .html AddOutputFilter INCLUDES .shtml .html |
に変更する
Apacheを再起動して完了