咨询热线:4006-75-4006

售前:9:00-23:30    备案:9:00-18:00    技术:7*24h

Windows服务器下Apache基于域名的虚拟主机配置

2016-01-19 10:08:28 11260次

下面我想记录下Windows服务器下Apache基于域名的虚拟主机配置,仅做参考

此配置是在Windows服务器下Apache的安装步骤   基础之上的。

配置思路:修改http.conf,Include 一个基于域名的主机配置文件,配置文件中

                指定域名,主机,网站根目录等内容,重启测试即可。本例子用

                www.landui.com作为域名 


配置httpd.conf

----------------------------------

# Virtual hosts begin
#Include conf/extra/httpd-vhosts.conf
#
# Use name-based virtual hosting.
#
NameVirtualHost *:80
Include conf/extra/vhosts/*.conf

----------------------------------
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Allow from all
</Directory>

<Directory "D:/server/Apache24/cgi-bin">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
</Directory>

----------------------------------

配置www.landui.com

<VirtualHost *>
    <Directory "E:/htdocs/www.landui.com">
        Options -Indexes FollowSymLinks
    </Directory>
    ServerAdmin admin@www.landui.com
    DocumentRoot "E:/htdocs/www.landui.com"
    ServerName www.landui.com
    ServerAlias Godlovesme.com www.landui.com
    ErrorLog logs/www.landui.com_log
    php_admin_value open_basedir "E:htdocswww.landui.com;C:WindowsTemp;"
</VirtualHost>

----------------------------------

    需要修改Directory,否则会无法打开网站,域名需要解析到服务器的ip地址上,

    最后我们可以编辑一个<?php phpinfo(); ?>来校验我们安装是否成功!如下图:


参考文件:Windows服务器下Apache的安装步骤

                Windows服务器下Apache的PHP配置步骤

                Windows服务器下Apache的默认文档的设置

                         

                  




              



首页
最新活动
个人中心