如何让PHP+APAHCHE支持SSI?

2004年08月18日 02:20 查看4356次 作者:   【
文章分类:PHP安装配置

如何在PHP+APAHCHE+MYSQL环境下使用服务器端包含SSI?如果可以是不是配置好之后的页面后缀就是 .shtml呢?

不是,要让服务器支持shtml具体来说需要这几个步骤:

打开 apache的http.conf

Step 1: 找到

#AddType text/html .shtml
#AddHandler server-parsed .shtml

将前面的注释去掉

Step 2: 你需要给哪个虚拟机加上此功能,请在相应的虚拟机目录中加:
代码:
<Directory "/data1/apache/share/htdocs">

#
# This may also be "None", "All", or any combination of "Indexes",
# "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
    Options Includes FollowSymLinks MultiViews
#	 ~~~~~~~~ <= INCLUDES 启动shtml脚本中用
#
# This controls which options the .htaccess files in directories can
# override. Can also be "All", or any combination of "Options", "FileInfo",
# "AuthConfig", and "Limit"
#
    AllowOverride None

#
# Controls who can get stuff from this server.
#
    Order allow,deny
    Allow from all
</Directory>
 
责任编辑:admin

给文章打个分先...

平均分:0.8(26 次)

-5 -4 -3 -2 -1 0 1 2 3 4 5
1

顶一下

发表我的见解...

  • 您的大名: 留空为匿名
  • 您的主页:
  • 您的邮箱:

看看大家怎么说...

  • 创意产品 发表于09年05月03日 13:03

    早就知道了