# php 安装

# 启动、关闭,重启

sudo apachectl start sudo apachectl stop sudo apachectl restart

# 查看 Apache 服务版本

sudo apachectl -v

# 运行

http://localhost

# 修改配置文件

Apache 服务默认安装路径在/private/etc/apache2 里面修改 httpd.conf

修改权限

<Directory />
    #AllowOverride none
    #Require all denied
    Options FollowSymLinks
    AllowOverride All
    Order deny,allow
    allow from all
</Directory>
1
2
3
4
5
6
7
8

修改默认资源文件

# DocumentRoot "/Library/WebServer/Documents"
DocumentRoot "/Volumes/data/aijiatui/public"
1
2
最后更新时间: 5/26/2021, 5:52:52 PM