ssi服务配置教程:Apache服务器下配置SSI服务
关注+2011-07-08作者:清晨
第 2 页 用来配置域名的哦 #这段是用来配置域名的哦。
ServerAdmin admin@javapeixun.com.cn
DocumentRoot c:/vhosts/javapeixun
ServerName javapeixun.com.cn:80
ServerAlias www.javapeixun.com.cn
ErrorLog logs/javapeixun.com.cn-error_log
VirtualHost>
#这里就是用来配置 SSI 的。
AddOutputFilterByType INCLUDES;DEFLATE text/html
AddType text/html .html .htm .shtml .ssi
AddHandler server-parsed .shtml .html .htm .shtm
# AddHandler cgi-script cgi
Options Indexes MultiViews Includes
AllowOverride None
Order allow,deny
Allow from all
Directory>
编辑 Apache\conf 目录下 的 httpd.conf。
在文件末尾 添加
Include conf/extra/httpd-vhosts.conf
然后重启 Apache 就OK 啦。
Apache 就是这样配置 SSI 和 域名的。