• 技术文章 >后端开发 >php教程

    apache配置虚拟主机,apache虚拟主机_PHP教程

    2016-07-13 09:58:56原创344

    apache配置虚拟主机,apache虚拟主机


    #在httpd.conf 开启 Virtual hosts Include conf/extra/httpd-vhosts.conf
    #然后在httpd-vhosts.conf 里面配置
    #根据ip来匹配
    # 
    #    DocumentRoot "E:/htdocs"
    #    DirectoryIndex index.html index.htm index.php
    #    
    #      Options FollowSymLinks 
    #      AllowOverride None 
    #      Order allow,deny
    #      Allow from all
    #    
    # 
    
    #根据端口号来匹配
    # 
    #    DocumentRoot "E:/htdocs"
    #    DirectoryIndex index.html index.htm index.php
    #    
    #      Options FollowSymLinks 
    #      AllowOverride None 
    #      Order allow,deny
    #      Allow from all
    #    
    # 
    
    #根据主机名匹配
    
        DocumentRoot "E:/htdocs"
        ServerName localhost
        DirectoryIndex index.html index.htm index.php
        
          Options FollowSymLinks 
          AllowOverride None 
          Order allow,deny
          Allow from all
        
    
    
    
        DocumentRoot "E:/htdocs/dedecms"
        ServerName dedecms.com
        DirectoryIndex index.html index.htm index.php
        
          Options FollowSymLinks 
          AllowOverride None 
          Order allow,deny
          Allow from all
        
    
    
    
        DocumentRoot "E:/htdocs/discuz"
        ServerName discuz.com
        DirectoryIndex index.html index.htm index.php
        
          Options FollowSymLinks 
          AllowOverride None 
          Order allow,deny
          Allow from all
        
    
    #在window 配置host文件

    www.bkjia.comtruehttp://www.bkjia.com/PHPjc/976452.htmlTechArticleapache配置虚拟主机,apache虚拟主机 #在httpd.conf 开启 Virtual hosts Include conf/extra/httpd-vhosts.conf#然后在httpd-vhosts.conf 里面配置#根据ip来匹配# Vi...

    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
    专题推荐:虚拟主机
    上一篇:apache配置虚拟目录,apache虚拟目录_PHP教程 下一篇:PHP中使用BigMap实例_PHP教程
    VIP课程(WEB全栈开发)

    相关文章推荐

    • 【腾讯云】年中优惠,「专享618元」优惠券!• 用PHP来统计在线人数的四个方法详解• 新手有几个问题大家 • PHP时间戳函数小结一览 • php5戏法函数、魔术常量 • 最近有点迷惘,还想请大家指导上学习的方法
    1/1

    PHP中文网