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

  • 相关阅读:
    C语言中变量和函数类型
    ubuntu中耳机声音小的解决方案
    数据结构学习4——栈
    Linux 引导过程内幕
    linux gdb 没有符号表被读取。请使用 "file" 命令。
    linux 内存泄漏检查工具
    数据结构学习5——队列
    [转载]Ubuntu垃圾清理
    系统消息
    窗口相关概念和对应关系
  • 原文地址:https://www.cnblogs.com/zhylog/p/6836044.html
Copyright © 2011-2022 走看看