WebjxCom提示:Apache就是这样配置SSI和域名的
。 我们需要在Apache/conf/extra/目录下建立一个httpd-vhosts.conf这样的文件
。 文件内容如下:
#../vhosts是你的网站目录
<Directory"../vhosts">
Options-IndexesFollowSymLinks
AllowOverrideAll
Orderallow,deny
Allowfromall
Directory>
NameVirtualHost*
<VirtualHost*>
DocumentRoot../vhosts
ServerNamedefalut:80
ErrorLoglogs/defalut-error_log
VirtualHost>
#因为有可能你有多个站点
,针对每个站点在vhosts下建立不同的目录比如c:/vhosts/javapeixun
<Directory"c:/vhosts/javapeixun">
Allowfromall
Directory>
#这段是用来配置域名的哦。
<VirtualHost*>
ServerAdminadmin@javapeixun.com.cn DocumentRootc:/vhosts/javapeixun
ServerNamejavapeixun.com.cn:80
ServerAliaswww.javapeixun.com.cn
ErrorLoglogs/javapeixun.com.cn-error_log
VirtualHost>
#这里就是用来配置SSI的。
<Directory"c:/vhosts/">
AddOutputFilterByTypeINCLUDES;DEFLATEtext/html
AddTypetext/html.html.htm.shtml.ssi
AddHandlerserver-parsed.shtml.html.htm.shtm
#AddHandler
cgi-script
cgi OptionsIndexesMultiViewsIncludes
AllowOverrideNone
Orderallow,deny
Allowfromall
Directory>
编辑Apacheconf目录下的httpd.conf。
在文件末尾添加
Includeconf/extra/httpd-vhosts.conf
然后重启Apache就OK啦。
Apache就是这样配置SSI和域名的。