- 工信部备案号 滇ICP备05000110号-1
- 滇公安备案 滇53010302000111
- 增值电信业务经营许可证 B1.B2-20181647、滇B1.B2-20190004
- 云南互联网协会理事单位
- 安全联盟认证网站身份V标记
- 域名注册服务机构许可:滇D3-20230001
- 代理域名注册服务机构:新网数码
下面我想记录下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(); ?>来校验我们安装是否成功!如下图:
售前咨询
售后咨询
备案咨询
二维码
TOP