设定documentroot目录为: /test
域名有两个,www.test.com,blog.test.com
首先打开httpd.conf,找到#Include conf/extra/httpd-vhosts.conf,去掉前面的#号,设置ServerName 192.168.0.1:80
然后打开你的httpd-vhosts.conf,打开,写入
NameVirtualHo...
分类:
Web程序 时间:
2014-12-24 14:41:44
阅读次数:
186
环境说明:此篇博客是基于编译安装httpd2.4博客基础上进行的一、虚拟主机;1.1基于host[root@burgessapache]#vim/etc/httpd24/httpd.confInclude/etc/httpd24/extra/httpd-vhosts.conf#开启虚拟主机#DocumentRoot"/www/htdocs"#将中心主机注释掉[root@burgessapache]#cd/etc/ht..
分类:
Web程序 时间:
2014-12-22 02:06:29
阅读次数:
316
本文首发于烂泥行天下。要配置apache的虚拟主机,我们需要分以下几步进行:1、检查apache虚拟主机模块2、开启apache虚拟主机功能3、httpd-vhosts.conf文件详解4、根据IP配置虚拟主机5、根据端口配置虚拟主机6、根据域名配置虚拟主机一、检查apache虚拟主机模块apache要配置虚拟..
分类:
Web程序 时间:
2014-12-17 18:59:31
阅读次数:
265
软件安装目录为 /web/sofe网站源文件放置在目录 /data/vhosts/ 下,通过samba或VM 实现与 windows 共享虚拟主机配置文件(类似于Apache里面 httpd-vhost.conf)可以通过命令 vi /web/sofe/nginx/conf/vhost/myjob....
分类:
其他好文 时间:
2014-12-17 18:18:39
阅读次数:
268
本文由秀依林枫提供友情赞助,首发于烂泥行天下。 要配置apache的虚拟主机,我们需要分以下几步进行: 1、 检查apache虚拟主机模块 2、 开启apache虚拟主机功能 3、 httpd-vhosts.conf文件详解 4、 根据IP配置虚拟主机 5、 根据端口配置虚拟主机 6、 根据域名配置...
分类:
Web程序 时间:
2014-12-17 14:20:51
阅读次数:
322
#访问$uri
#if exists $uri -> 访问他
#if $uri is not end of / and exists /Vhosts/$http_host/$uri ->访问他
#if $uri is end of / and exists /Cache/$http_host/$uri/index.html -> 访问他
#否则 $uri -> /index.php
#...
分类:
其他好文 时间:
2014-12-09 10:39:35
阅读次数:
132
1、所谓虚拟主机的配置,即url与磁盘目录的绑定2、在httpd.conf中查询Virtual host,发现有注释说明需要在conf/extra/httpd-vhosts.conf中进行配置。3、模板: 1 2 DocumentRoot "d:/myweb" 3 Director...
分类:
Web程序 时间:
2014-12-08 17:02:36
阅读次数:
228
虚拟主机开启httpd-vhosts.confconf\extra\httpd-vhosts.conf文件<VirtualHost127.0.0.1:80>DocumentRoot"D:/website/ApacheSoftwareFoundation/Apache2.2/htdocs"DirectoryIndexindex.htmlindex.htmdefault.htmServerNamewww.localhost.comServerAliaswww.localhost.com..
分类:
Web程序 时间:
2014-12-06 06:41:17
阅读次数:
190
使用xampp或wamp安装完集成环境后,更改apache的网站根目录会导致localhost,localhost/phpmyadmin访问不到。解决方法: 打开apache的配置文件:“../apache/conf/extra/httpd-vhosts.conf”,加入下面代码: ...
分类:
Web程序 时间:
2014-12-02 22:04:29
阅读次数:
303
现在我需要将原来位于xampp/htdocs/zm下的网站修改到D:/lyh/webhome目录下访问,原来的访问路径为http://localhost/zm,现在为http://www.yihui.com,则首先我需要在xampp下配置一个虚拟站点分别修改http.conf、http-vhosts...
分类:
其他好文 时间:
2014-12-02 10:24:00
阅读次数:
152