zoukankan      html  css  js  c++  java
  • wamp虚拟机配置

    1.找到httpd.conf 里面;找到

    # Virtual hosts 开启虚拟机
    Include conf/extra/httpd-vhosts.conf

    2  编辑httpd-vhosts.conf,所以我这里的路径是D:wampApache2confextra。  

    <VirtualHost *:80>
        ServerAdmin phpwork.com
        DocumentRoot "D:/wamp/www/phpwork"
        ServerName phpwork.com
        ServerAlias www.phpwork.com
        ErrorLog "logs/phpwork.com-error.log"
        CustomLog "logs/phpwork.com-access.log" common
    </VirtualHost>

    3 编辑httpd.conf,找到DocumentRoot "d:/wamp/www/"这项,这是默认根目录路径,但是要更改的不是这个,一直往下找,找到<Directory "d:/wamp/www">,然后在该</Directoory>后加上如下内容:

      <Directory "D:/wamp/www/phpwork">
         Order Deny,Allow
         Deny from all
         Allow from 127.0.0.1
         Allow from ::1
         Allow from localhost
    </Directory>

    4.修改C:/WINDOWS/system32/drivers/etc/host这个文件,用记事本打开,加上如下内容:
       127.0.0.1  www.phpwork.com

    好了,然后重启apache,在浏览器里面输入phpwork.com,看看访问到的内容是不是workplace这个目录呢。

  • 相关阅读:
    HDU
    HDU
    HDU
    HDU
    西电网络赛
    西电网络赛
    西电网络赛
    西电网络赛
    西电网络赛
    西电网络赛
  • 原文地址:https://www.cnblogs.com/wanglijun/p/3521096.html
Copyright © 2011-2022 走看看