美文网首页服务器搭建
如何在Mac上搭建Web服务器(Apache)

如何在Mac上搭建Web服务器(Apache)

作者: 跌不死的蚂蚁 | 来源:发表于2019-06-21 21:20 被阅读0次

    局域网搭建 Web 服务器测试环境,因为Mac OS X 自带了 Apache 和 PHP 环境,我们只需要简单的启动它就行了。惊不惊喜,意不意外!😄

    1.相关命令

    a.启动 Apache 命令 : sudo apachectl start
    b.停止 Apache 命令 : sudo apachectl stop
    c.重启 Apache 命令 : sudo apachectl restart

    2.Apache相关信息

    a.Apache服务器默认的web根目录在:/Library/WebServer/Documents
    b.Apache的配置文件在:/etc/apache2

    3.预览内容,请再浏览器输入以下两个任意地址:

    a. http://localhost/
    b. http://127.0.0.1/

    image.png

    4.如何查看自己编写的文件

    将自己编写的html文件复制到 /Library/WebServer/Documents 文件夹下,无需重启服务,及时浏览内容.

    路径.png

    浏览器访问 index.html 文件,浏览方式有三种:

    1. http://localhost/index.html

    2.http://127.0.0.1/index.html

    3.本机ip/index.html

    预览.png

    相关文章

      网友评论

        本文标题:如何在Mac上搭建Web服务器(Apache)

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