|
|
沙发#
发布于:2014-03-14 14:39
问火锅吧
|
|
|
板凳#
发布于:2014-03-14 14:45
|
|
地板#
发布于:2014-03-14 15:05
这里顺便分享出大神们的解决方案:
1、在(httpd.conf) Listen 80 下 添加以下语句: Include conf/httpd-Listen.conf 2、如果没有端口监听文件(conf/httpd-Listen.conf)自己添加一个文件重命名即可 在”端口监听文件“中写入要监听的其他端口: Listen 8082 Listen 8080 3、同步配置 虚拟主机配置文件(httpd-vhosts.conf) <VirtualHost *:80> ServerName localhost #访问文件根目录 DocumentRoot "D:/wamp/adlm" #访问文件 <Directory "D:/wamp/adlm"> Options Indexes FollowSymLinks AllowOverride None Order allow,deny Allow from all </Directory> </VirtualHost> <VirtualHost *:8082> ServerName localhost ProxyPass / http://www.baidu.com/ ProxyPassReverse / http://www.baidu.com/ </VirtualHost> <VirtualHost *:8080> ServerName localhost ProxyPass / http://www.sina.com/ ProxyPassReverse / http://www.sina.com/ </VirtualHost> 这样就可以了 |
|
4楼#
发布于:2014-05-16 13:10
不错,要对APACHE熟悉些
|
|