我是靠谱客的博主 大力小海豚,最近开发中收集的这篇文章主要介绍Apache 配置多端口 多虚拟主机 局域网访问示例,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一、在\wamp\bin\apache\Apache2.4.4\conf\extra\httpd-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>

二、\wamp\bin\apache\Apache2.4.4\conf\httpd.conf 修改如下:

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

Listen 80
Listen 8080

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

三、C:\Windows\System32\drivers\etc\hosts 修改配置
复制代码 代码如下:

<pre code_snippet_id="331423" snippet_file_name="blog_20140507_1_9705788"></pre>
<pre></pre>
<pre></pre>
<pre></pre>

最后

以上就是大力小海豚为你收集整理的Apache 配置多端口 多虚拟主机 局域网访问示例的全部内容,希望文章能够帮你解决Apache 配置多端口 多虚拟主机 局域网访问示例所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(93)

评论列表共有 0 条评论

立即
投稿
返回
顶部