首页 行业资讯 宠物日常 宠物养护 宠物健康 宠物故事

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

发布网友 发布时间:2022-04-23 13:44

我来回答

1个回答

热心网友 时间:2023-09-19 03:44

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";找到<Directory "D:/Apache/htdocs">,做类似的修改;
6、找到#Include conf/extra/httpd-vhosts.conf,把前面的“#”去掉;
7、找到安装目录下conf/extra/下的httpd-vhosts.conf文件,并用记事本打开;
8、你将看到最后有如下默认配置,这是不同端口指向不同网站目录的配置,可以根据端口数量对下面的配置项进行相应的删减:
<VirtualHost *:80>
ServerAdmin webmaster@mmy-host.q.com
DocumentRoot "D:/Apache/docs/mmy-host.q.com"
ServerName mmy-host.q.com
ServerAlias www.mmy-host.q.com
ErrorLog "logs/mmy-host.q.com-error.log"
CustomLog "logs/mmy-host.q.com-access.log" common
</VirtualHost>
<VirtualHost *:80>
ServerAdmin webmaster@mmy-host2.q.com
DocumentRoot "D:/Apache/docs/mmy-host2.q.com"
ServerName mmy-host2.q.com
ErrorLog "logs/mmy-host2.q.com-error.log"
CustomLog "logs/mmy-host2.q.com-access.log" common
</VirtualHost>
下面分别给端口8888、9999配置到网站web1、web2(这两个网站要位于前面设置的网站存放空间中,我这里是D:myweb),修改后的代码如下:
<VirtualHost *:8888>
ServerAdmin webmaster@mmy-host.q.com
DocumentRoot "D:/myweb/web1"
ServerName mmy-host.q.com
ServerAlias www.mmy-host.q.com
ErrorLog "logs/mmy-host.q.com-error.log"
CustomLog "logs/mmy-host.q.com-access.log" common
</VirtualHost>
<VirtualHost *:9999>
ServerAdmin webmaster@mmy-host2.q.com
DocumentRoot "D:/myweb/web2"
ServerName mmy-host2.q.com
ErrorLog "logs/mmy-host2.q.com-error.log"
CustomLog "logs/mmy-host2.q.com-access.log" common
</VirtualHost>
9、重启服务器后地址栏分别输入http://localhost:8888/、http://localhost:9999/将分别访问网站web1、web2,当然这里只能访问静态网站,如果需要支持动态网站(如php),需要添加动态支持,这里就不再介绍了。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com