mac 修改apache的DocumentRoot路径,报Forbidden错误
1.修改http.conf配置文件,修改到自己想要的路径
DocumentRoot “/Users/username/php”
<Directory “/Users/username/php”>
Options FollowSymLinks Multiviews
MultiviewsMatch Any
Require all granted
2.把配置文件里面的denied全部改成granted
3.修改mac的文件权限
https://support.apple.com/zh-cn/guide/mac-help/mchlp1203/mac
4.打开命令行,使用ls -al命令,从你的根目录开始到你修改的路径,确保每一个文件夹都有读和可执行权限例如rwxr-xr-x,如果没有请用chmod命令修改。
5.在你修改的路径的文件夹里面放入index.html,重启apache服务器