美文网首页
Mac apache配置

Mac apache配置

作者: Berning | 来源:发表于2019-10-04 14:10 被阅读0次

    一、apache简单配置

    1.apachectl -v 查看版本及是否安装了apache.

    2.sudo apachectl -k start|stop|restart 启动|停止|重启

    3.更改路径(DocumentRoot)

    1>cd /ect/apache2/

    2>sudo vim httpd.conf

    3>/DocumentRoot 按n查找下一个 N 查找下一个

    4>找到后 ,更改下面两处路径为自定义路径(如果需要)
    DocumentRoot "/Library/WebServer/Documents"
    <Directory "/Library/WebServer/Documents">

    5>.localhost(127.0.0.1),会自动加载下面的index.html,可以在这里更改默认加载页(如果需要)
    <IfModule dir_module>
    DirectoryIndex index.html
    </IfModule>

    以上更改都需要重启apache.

    二、apache支持php

    1.sudo vim https.conf

    2.查找/php,找到后去掉注释符 (#)

    1>cd /ect

    2>ls php*

    3>cp php.ini.default php.in

    4>保存重启apache

    4.这样apache服务器即可支持php

    相关文章

      网友评论

          本文标题:Mac apache配置

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