apache 配置不同的端口访问不同的站点

找到“D:\apache\conf”的“httpd.conf”

# Virtual hosts
# Include conf/extra/httpd-vhosts.conf

 去掉#号,修改为:

# Virtual hosts
Include conf/extra/httpd-vhosts.conf

效果图:

 

找到“D:\apache\conf\extra”的“httpd-vhosts.conf”

80重新修改 DocumentRoot 的地址,81是要添加的部分。修改为:

<VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot "D:/www"
    ServerName dummy-host.onestopweb.cn
    ServerAlias www.dummy-host.onestopweb.cn
    ErrorLog "logs/dummy-host.onestopweb.cn-error.log"
    CustomLog "logs/dummy-host.onestopweb.cn-access.log" common
</VirtualHost>

<VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot "D:/www"
    ServerName dummy-host2.onestopweb.cn
    ErrorLog "logs/dummy-host2.onestopweb.cn-error.log"
    CustomLog "logs/dummy-host2.onestopweb.cn-access.log" common
</VirtualHost>

Listen 81
<VirtualHost *:81>
    ServerAdmin [email protected]
    DocumentRoot "D:/www2"
    ServerName localhost:81
    ErrorLog "logs/dummy-host.localhost-error.log"
    CustomLog "logs/dummy-host.localhost-access.log" common
	<Directory "D:/www2">
		Options Indexes FollowSymLinks
		AllowOverride All
		Order allow,deny
		Allow from all
	</Directory>
</VirtualHost>

效果图:

 

 通过81端口打开本地站点:

 

扫描二维码关注公众号,回复: 553506 查看本文章

猜你喜欢

转载自onestopweb.iteye.com/blog/2338115