1)系统环境:
apache 2.2.11 linux
2)ssi使用的是mod_include的动态系统对象,一般默认的情况安装的情况下都会安装,可以通过apachectl
-l查看是否包括mod_include.o文件。
3).配置httpd.conf文件,使.html扩展名的文件启用ssi
httpd.conf代码
addtype text/html .html
addoutputfilter includes .html
去掉注释
4).找到主机document_root目录配置下
(虚拟主机一样),如果没有可以自己加上:
options followsymlinks
allowoverride none
其中:
options indexes followsymlinks
修改为:
options indexes followsymlinks includes
存盘重启apache
5). 测试一个.html页
在document_root目录建立一个test.html,内容如下:
- time:
- <br>
- servername:
- <br>
- env:
- <br>
-
-
- <br>
-
- condition is true
-
- condition is false
-
- <br>
-
inc/my.php内容如下:
运行
ok
阅读(5731) | 评论(0) | 转发(3) |