zoukankan      html  css  js  c++  java
  • xampp虚拟主机的配置

    一、修改httpd.conf
     
    文件目录 xampp => apache =>conf => httpd.conf

    1.在文件内搜索 关键字“httpd-vhosts.conf”,找到如下字段

    # Virtual hosts
    Include conf/extra/httpd-vhosts.conf//确保此段开头没有#
    

     2.在文件内搜索关键字“AllowOverride All”,找到如下字段

    <Directory "D:/xampp/cgi-bin">
        AllowOverride All
        Options None
        Require all granted
    </Directory>
    
    //修改为
    <Directory "D:/xampp/cgi-bin">
        Options Indexes FollowSymLinks Includes ExecCGI
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>
    

    3.搜索字段“DocumentRoot”,如下

    DocumentRoot "D:/xampp/htdocs"//确保此处路径是你要访问的项目的根路径
    
    ps:可以配置特定的根路径,比如: DocumentRoot "D:/www"
    

     二、修改httpd-vhosts.conf

    文件目录 xampp => apache =>conf => extra => httpd-vhosts.conf

    文件最后面可看到如下

    ##<VirtualHost *:80>
        ##ServerAdmin webmaster@dummy-host2.example.com
        ##DocumentRoot "D:/xampp/htdocs/dummy-host2.example.com"
        ##ServerName dummy-host2.example.com
        ##ErrorLog "logs/dummy-host2.example.com-error.log"
        ##CustomLog "logs/dummy-host2.example.com-access.log" common
    ##</VirtualHost>
    

     1.用ip访问

    <VirtualHost 127.0.0.5:80>//设置访问的ip
        ##ServerAdmin webmaster@dummy-host2.example.com
        DocumentRoot "D:/www"//你的项目文件目录
        ServerName  testname.dev//此项目的名称
        ##ErrorLog "logs/dummy-host2.example.com-error.log"
        ##CustomLog "logs/dummy-host2.example.com-access.log" common
    </VirtualHost>
    

     2.用ServerName访问

    <VirtualHost *:80>
        ##ServerAdmin webmaster@dummy-host2.example.com
        DocumentRoot "D:/www"//你的项目文件目录
        ServerName testname.dev//此项目的名称,通过此名称来访问项目,还需配置hosts文件
        ##ErrorLog "logs/dummy-host2.example.com-error.log"
        ##CustomLog "logs/dummy-host2.example.com-access.log" common
    </VirtualHost>
    

     3.配置hosts文件

    文件目录 C:WindowsSystem32driversetchosts
    在文件中加入
    127.0.0.1   testname.dev 
    

    三、修改完记得重启aphache在进行访问三、修改完记得重启aphache在进行访问

     
  • 相关阅读:
    (转载)显示调用构造函数和析构函数
    (转载)c库不正确问题
    (转载)LINUX UNBUNTU10.04 下 搭建OC编译环境
    (转载)Chrome 快捷键 整理版
    (转载)php循环检测目录是否存在并创建(循环创建目录)
    (转载)PHP 判断常量,变量和函数是否存在
    Dockerfile 指令
    JavaEE&Docker 容器示例
    docker 中运行 redis 服务
    docker 中运行 sshd 服务
  • 原文地址:https://www.cnblogs.com/pcx105/p/6369520.html
Copyright © 2011-2022 走看看