• 冒险村物语
  • 英雄无敌3塔防
  • 驾考家园手游

Apache 配置多端口 多虚拟主机 局域网访问示例

2014-05-12

一、在wampbinapacheApache2.4.4confextrahttpd-vhosts.conf 修改如下 
复制代码代码如下:

NameVirtualHost *:80 

<VirtualHost *:80> 
DocumentRoot "E:/website/pxsj" 
ServerName host7.com 
ServerAlias 192.168.1.116 
<Directory "E:/website/pxsj"> 
Options Indexes FollowSymLinks 
AllowOverride None 
Order allow,deny 
Allow from all 
</Directory> 
</VirtualHost> 

NameVirtualHost *:8080 

<VirtualHost *:8080> 
DocumentRoot "E:/website/whsj" 
ServerName host10.com:8080 
ServerAlias 192.168.1.116:8080 
<Directory "E:/website/whsj"> 
Options Indexes FollowSymLinks 
AllowOverride None 
Order allow,deny 
Allow from all 
</Directory> 
</VirtualHost> 

二、wampbinapacheApache2.4.4confhttpd.conf 修改如下: 

在该文件中查找“Listen”一词修改 
复制代码代码如下:

Listen 80 
Listen 8080 

# Virtual hosts 
# Include conf/extra/httpd-vhosts.conf去掉前面的#,这样就开启了httpd-vhosts虚拟主机文件。这时候重启环境 

三、C:WindowsSystem32driversetchosts 修改配置 
复制代码代码如下:

<pre code_snippet_id="331423" snippet_file_name="blog_20140507_1_9705788"></pre> 
<pre></pre> 
<pre></pre> 
<pre></pre> 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)

人气推荐

知识阅读

精彩推荐

  • 游戏
  • 软件
查看更多>>