请问apache怎么可以绑定多个目录?
请问apache怎么可以绑定多个目录?就是我本地有两个网站,存在两个不同的文件夹。比如一个文件夹叫test1,里面存放着test1.html;一个叫test2,里面存放着...
请问apache怎么可以绑定多个目录?
就是我本地有两个网站,存在两个不同的文件夹。
比如一个文件夹叫 test1,里面存放着test1.html;一个叫test2,里面存放着test2.html。
然后怎么配置apache可以以下面形式访问到我的站点。(局域网访问)
1:输入http://192.168.1.66 访问到test1
2:输入http://192.168.1.66:8080 访问到test2
局域网访问我,所以配置虚拟目录好像不行。
谢谢帮忙解答!! 展开
就是我本地有两个网站,存在两个不同的文件夹。
比如一个文件夹叫 test1,里面存放着test1.html;一个叫test2,里面存放着test2.html。
然后怎么配置apache可以以下面形式访问到我的站点。(局域网访问)
1:输入http://192.168.1.66 访问到test1
2:输入http://192.168.1.66:8080 访问到test2
局域网访问我,所以配置虚拟目录好像不行。
谢谢帮忙解答!! 展开
1个回答
展开全部
apache的配置文件添加侦听Listen :8080,然后在结尾处加上
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.localhost
DocumentRoot "你的根目录/test1"
ServerName localhost
</VirtualHost>
<VirtualHost *:8080>
ServerAdmin webmaster@dummy-host.localhost
DocumentRoot "你的根目录/test2"
ServerName localhost
</VirtualHost>
<VirtualHost *:80>
ServerAdmin webmaster@dummy-host.localhost
DocumentRoot "你的根目录/test1"
ServerName localhost
</VirtualHost>
<VirtualHost *:8080>
ServerAdmin webmaster@dummy-host.localhost
DocumentRoot "你的根目录/test2"
ServerName localhost
</VirtualHost>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询