zoukankan      html  css  js  c++  java
  • mac apache 配置虚拟域名

     配置HOSTS

     

     #vim /private/etc/hosts

     

      添加↓:

     

       127.0.0.1       tp.zhy.cn

     

     配置虚拟主机

     #vim /private/etc/apache2/extra/httpd-vhosts.conf

     

     添加↓:

     <VirtualHost *:80>

        ServerAdmin xxx@qq.com

        DocumentRoot "/Users/zhy/Sites/xxxx_5/public/"

        ServerName tp.zhy.cn

        ErrorLog "/private/var/log/apache2/xx.cn-error_log"

        CustomLog "/private/var/log/apache2/xx.cn-access_log" common

     </VirtualHost>

     

     

    最后重启 apache ↓

     

     

    重启Mac上的Apache服务

    停止服务:sudo /usr/sbin/apachectl stop

    开启服务:sudo /usr/sbin/apachectl start

    重启服务:sudo /usr/sbin/apachectl restart

  • 相关阅读:
    解决IE8下VS2005,VS2008一些向导提示脚本错误问题
    12-7
    12.4
    写在十一月的尾巴
    11.28
    htm&css 颜色的浮动
    11.27
    11.26
    html基础——表格练习
    html基础——div/span
  • 原文地址:https://www.cnblogs.com/zhylog/p/6836044.html
Copyright © 2011-2022 走看看