当前位置: 操作系统/服务器>linux
Apache 配置多端口 多虚拟主机 局域网访问示例
来源: 互联网 发布时间:2014-08-25
本文导语: 一、在wampbinapacheApache2.4.4confextrahttpd-vhosts.conf 修改如下 代码如下: NameVirtualHost *:80 DocumentRoot "E:/website/pxsj" ServerName host7.com ServerAlias 192.168.1.116 Options Indexes FollowSymLinks AllowOverride None Order allow,deny Allow from all NameVirtualHost *:8080 ...
一、在wampbinapacheApache2.4.4confextrahttpd-vhosts.conf 修改如下
NameVirtualHost *:80
DocumentRoot "E:/website/pxsj"
ServerName host7.com
ServerAlias 192.168.1.116
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
NameVirtualHost *:8080
DocumentRoot "E:/website/whsj"
ServerName host10.com:8080
ServerAlias 192.168.1.116:8080
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
二、wampbinapacheApache2.4.4confhttpd.conf 修改如下:
在该文件中查找“Listen”一词修改
Listen 80
Listen 8080
# Virtual hosts
# Include conf/extra/httpd-vhosts.conf去掉前面的#,这样就开启了httpd-vhosts虚拟主机文件。这时候重启环境
三、C:WindowsSystem32driversetchosts 修改配置
代码如下:
NameVirtualHost *:80
DocumentRoot "E:/website/pxsj"
ServerName host7.com
ServerAlias 192.168.1.116
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
NameVirtualHost *:8080
DocumentRoot "E:/website/whsj"
ServerName host10.com:8080
ServerAlias 192.168.1.116:8080
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
二、wampbinapacheApache2.4.4confhttpd.conf 修改如下:
在该文件中查找“Listen”一词修改
代码如下:
Listen 80
Listen 8080
# Virtual hosts
# Include conf/extra/httpd-vhosts.conf去掉前面的#,这样就开启了httpd-vhosts虚拟主机文件。这时候重启环境
三、C:WindowsSystem32driversetchosts 修改配置
代码如下: