zoukankan      html  css  js  c++  java
  • Apache配置虚拟主机httpd-vhosts.conf

    一、配置虚拟主机需要3个文件

     1、Apache/conf/httpd.conf

     2、Apache/conf/extra/httpd-vhosts.conf (这个地版本的apache可能没有,可自己创建,也可以不要此文件,
       而将配置直接写在httpd.conf里面,写在extra/httpd-vhosts.conf只是为了管理方便,不让httpd.conf文件内容很多而已)

     3、C:WINDOWSsystem32driversetchosts



    二、配置步骤

    ① httpd.conf 找到VirtualHost example,在后面引入httpd-vhosts.conf文件:
    Include conf/extra/httpd-vhosts.conf
    这个句话,高版本的apache里面已经写有了,只需吧Include前面的#号去掉就OK

    ② httpd-vhosts.conf配置文件的内容如下:
    #
    # DocumentRoot 是网站文件存放的根目录
    # ServerName 是网站域名, 需要跟 DNS 指向的域名一致
    #


    ####################### my.iwebshop.com ####################
    #VirtualHost *:80#
     

       ServerAdmin webmaster@iwebshop.com
        DocumentRoot "e:/iwebshop"
        ServerName my.iwebshop.com
        ErrorLog "logs/my.iwebshop.com-error.log"
        CustomLog "logs/my.iwebshop.com-access.log" common

        #Directory "e:iwebshop"#
            Options Indexes FollowSymLinks
            AllowOverride All
            Require all granted
        #/Directory#
    #/VirtualHost#


    把#号换为< 或者 >


    。。。。。。可以写多个虚拟主机。。。。。。。
     
     
    ③在hosts文件里面增加一句:
    127.0.0.1 
          www.tomener.com

    现在访问www.tomener.com就可以访问到E:/www/tomener这个网站的内容了
  • 相关阅读:
    【02】AJAX XMLHttpRequest对象
    【01】什么是AJAX
    NPM是什么
    nodejs npm常用命令
    angular(转)
    s6 传输层
    s6-9 TCP 定时器
    s6-8 TCP 拥塞控制
    s6-7 TCP 传输策略
    s6-6 TCP 连接释放
  • 原文地址:https://www.cnblogs.com/jerrypro/p/6522898.html
Copyright © 2011-2022 走看看