修改httpd.conf文件
开启Apache的ssl_module模块
LoadModule ssl_module modules/mod_ssl.so
修改项目所在服务器目录的Option设置
DocumentRoot "D:\phpStudy\PHPTutorial\WWW"
<Directory />
Options +Indexes +FollowSymLinks +ExecCGI +INCLUDES +IncludesNOEXEC
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
去掉这两行代码所在处的注释,shtml和html代表文件后缀,根据自己需求添加
AddType text/html .shtml .html
AddOutputFilter INCLUDES .shtml .html
html文件引入方式
<!--#include virtual="/header.html"-->