nginx 403 forbidden 二种原因
1,缺少index.html或者index.PHP文件
server {
listen 80;
server_name localhost;
index index.php index.html;
root /home/zhangy/www;2,权限问题
server {
listen 80;
server_name localhost;
index index.php index.html;
root /home/zhangy/www;Last updated