apache ssi配置动态的包含静态.html文件-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 6315281
  • 博文数量: 162
  • 博客积分: 3600
  • 博客等级: 中校
  • 技术积分: 10366
  • 用 户 组: 普通用户
  • 注册时间: 2011-01-19 11:23
个人简介

专注系统运维、网络架构,研究技术凯发app官方网站的解决方案,记录我的思想轨迹、工作学习、生活和关注的领域

文章分类
文章存档

2014年(2)

2013年(16)

2012年(27)

2011年(117)

相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: linux

2011-03-28 11:44:47

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,内容如下:
html代码  
  1. time:        
  2. <br>  
  3. servername:   
  4. <br>  
  5. env:  
  6. <br>  
  7.   
  8.   
  9. <br>  
  10.   
  11.     condition is true  
  12.   
  13.     condition is false  
  14.   
  15. <br>  
  16.   

inc/my.php内容如下:
php代码  
  1. echo'this is my.php';
  2. ?>


运行

ok
阅读(5731) | 评论(0) | 转发(3) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图