Fix lỗi 403 Forbidden You don't have permission to access this resource on apache2 Mac

Lượt xem: 2369

Fix lỗi 403 Forbidden You don't have permission to access this resource on apache2 Mac

Khi thiết lập chạy server apache2 trên máy Mac. Khi chạy source thì bị lỗi  403 Forbidden You don't have permission to access this resource  bạn xử lý như sau.

Bước 1: Chạy lệnh sudo nano /etc/apache2/httpd.conf (Nhập password nếu có yêu cầu)

Bước 2: Tìm tới dòng  #LoadModule php7_module libexec/apache2/libphp7.so  và bỏ comment.

Bước 3: Bổ sung thêm index.php vào đoạn sau


<IfModule dir_module>
    DirectoryIndex index.html
</IfModule>

Sẽ thành như:


<IfModule dir_module>
    DirectoryIndex index.php index.html
</IfModule>

Bước 4: Tìm tới phần user, group


User _www
Group _www

Sửa thành user_name của máy mac của bạn (ví dụ máy mình là dandev) sẽ đổi thành


User dandev
Group staff

Bước 5: Khởi động lại apache


sudo apachectl restart