Apache 配置多端口 多虚拟主机 局域网访问示例
时间:2023-07-04 00:50:02
一、在\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>
标签:多端口,多虚拟主机,局域网访问
0
投稿
猜你喜欢
VMware pro15安装macOS10.13图解详细安装(图文)
2021-12-04 22:15:08
Discuz!论坛Tools工具箱功能详解
2009-02-15 09:49:00
浅谈网站如何才能得以有效推广
2010-03-07 14:58:00
网站内部链接的重要性及优化方法
2008-11-10 10:59:00
如何解决Web服务器能Ping通但不能访问
2009-07-23 20:00:00
如何给你的网站书写标题,从而更有利于SEO
2009-03-09 11:14:00
Docker 运行多个Springboot的详细教程
2023-04-11 07:53:04
SSL证书是什么?有什么用?
2010-04-07 13:01:00
优酷在京发布优酷指数 艾瑞提供数据支持
2009-11-13 11:23:00
期待web2.0的春天
2007-09-18 12:19:00
Windows2000 IIS5.0之WWW设置
2010-05-10 18:26:00
CentOS虚拟机克隆后无法上网(网卡信息不一致)问题的解决方法
2021-07-12 01:55:39
编写安全的ASP代码
2008-03-24 20:10:00
谷歌搜索引擎优化关于链接的九个基础问题
2008-12-08 10:18:00
什么是FTP及FTP服务器
2009-12-22 18:42:00
VMware安装openWRT软路由系统的步骤(图文教程)
2022-02-21 20:32:39
25大永留历史的IT产品
2009-04-12 19:27:00
Docker Compose的安装和使用步骤
2021-11-09 18:33:32
十大WordPress的SEO优化技巧
2007-09-11 19:08:00
详解Linux多线程使用信号量同步
2023-11-02 17:12:12