如何配置Apache不同的端口指向不同的网站

1、到Apache官网 http://www.apache.org 下载Apache服务器,本文以版本2.2为例;
2、安装Apahce,这里我安装到D:Apache下;
3、到安装目录下的conf目录下找到httpd.conf文件,这是Apache的配置文件,用记事本打开;
4、找到Listen 80,这是Apache的默认端口,你可以修改该端口,也可以添加新端口,这里我改为如下(也就是为该 服务器配置 2个端口):
Listen 8888
Listen 9999
5、找到DocumentRoot "D:/Apache/htdocs",配置网站的存放空间,我这里改为DocumentRoot "D:/myweb";找到,做类似的修改;
6、找到#Include conf/extra/httpd-vhosts.conf,把前面的“#”去掉;

7、找到安装目录下conf/extra/下的httpd-vhosts.conf文件,并用记事本打开;


把下面这个去掉


DocumentRoot "/Apache24/htdocs"
#ServerName www.example.com:80



8、你将看到最后有如下默认配置,这是不同端口指向不同 网站目录 的配置,可以根据端口数量对下面的配置项进行相应的删减:

ServerAdmin [email protected]
DocumentRoot "D:/Apache/docs/dummy-host.q.com"
ServerName dummy-host.q.com
ServerAlias  www.dummy-host.q.com
ErrorLog "logs/dummy-host.q.com-error.log"
CustomLog "logs/dummy-host.q.com-access.log" common


ServerAdmin [email protected]
DocumentRoot "D:/Apache/docs/dummy-host2.q.com"
ServerName dummy-host2.q.com
ErrorLog "logs/dummy-host2.q.com-error.log"
CustomLog "logs/dummy-host2.q.com-access.log" common

下面分别给端口8888、9999配置到网站web1、web2(这两个网站要位于前面设置的网站存放空间中,我这里是D:myweb),修改后的代码如下:

ServerAdmin [email protected]
DocumentRoot "D:/myweb/web1"
ServerName dummy-host.q.com
ServerAlias  www.dummy-host.q.com
ErrorLog "logs/dummy-host.q.com-error.log"
CustomLog "logs/dummy-host.q.com-access.log" common


ServerAdmin [email protected]
DocumentRoot "D:/myweb/web2"
ServerName dummy-host2.q.com
ErrorLog "logs/dummy-host2.q.com-error.log"
CustomLog "logs/dummy-host2.q.com-access.log" common

9、重启服务器后地址栏分别输入 http://localhost:8888/ http://localhost:9999/ 将分别访问网站web1、web2,当然这里只能访问 静态网站 ,如果需要支持 动态网站 (如php),需要添加动态支持,这里就不再介绍了。

你可能感兴趣的:(如何配置Apache不同的端口指向不同的网站)