美文网首页PHP
(Mac)PHP 学习笔记一 Apache

(Mac)PHP 学习笔记一 Apache

作者: 887d1fc86fe6 | 来源:发表于2018-09-04 11:00 被阅读4次
    开启Apache: sudo apachectl start
    
    重启Apache:  sudo apachectl restart
    
    关闭Apache:  sudo apachectl stop
    
    Apache本地路径:/Library/WebServer/Documents
    
    Apache中 httpd.conf 路径: /etc/apache2/httpd.conf
    
    // Mac中没有默认的 php.ini 文件,但是有对应的模版文件 php.ini.default
    php.ini 路径: /private/etc 或者 /etc 目录里面找到 php.ini.default 文件
    
    1. httpd.conf 配置文件 AddType: https://blog.csdn.net/frankarmstrong/article/details/72235206
    AddType.png
    2. php.ini 系统时区设置:

    https://www.jianshu.com/p/c83473971eda

    3. 文件目录分析:
    屏幕快照 2018-09-07 上午11.17.52.png
    4. 常用命令行

    Windows 中使用 httpd.exe -t 检查 apache 有没有问题,Mac中则没有 httpd.exe 命令,则使用:

    // 查看apache版本号
    apachectl -v
    // 检查apache配置文件是否正确
    apachectl -t
    

    相关文章

      网友评论

        本文标题:(Mac)PHP 学习笔记一 Apache

        本文链接:https://www.haomeiwen.com/subject/lhcgwftx.html