1、加载include.so模块(默认加载)
LoadModule include_module modules/mod_include.so
2、添加支持类型(默认支持)
AddType text/html .shtml
AddOutputFilter INCLUDES .shtml
3、Directory目录权限中添加Includes
#支持全部功能
Options Indexes FollowSymLinks Includes
#不能够调用exec执行命令
Options Indexes FollowSymLinks IncludesNOEXEC
4、重启Apache
/etc/init.d/apache restart
2、2 通过配置htaccess来支持SSI
1、允许apache支持htaccess文件,并重启服务
vim /etc/httpd/conf/httpd.conf
AllowOverride All
2、目录中写入htaccess文件
Options Indexes FollowSymLinks Includes
AddType application/x-httpd-CGI .CGI
AddType text/x-server-parsed-html .shtml
3、SSI指令集