403禁止使用nginx

我正在尝试使用nginx创建一个localhost服务器.我的页面上有403 Forbidden.这是我的nginx错误日志:2013/03/30 20:39:18 [error] 12161#0: *1 directory index of /home/mike/Projects/606club/ is forbidden, client: 127.0

我正在尝试使用nginx创建一个localhost服务器.我的页面上有403 Forbidden.这是我的nginx错误日志:

2013/03/30 20:39:18 [error] 12161#0: *1 directory index of "/home/mike/Projects/606club/" is forbidden,client: 127.0.0.1,server: localhost,request: "GET /606club/ HTTP/1.1",host: "localhost"

我的nginx.conf文件:

server {
    listen       80;
    server_name  localhost;

    #for .html sites
    location / {
        root   /home/mike/Projects;
        index  index.html index.htm;
    }

    #for .php sites
    location ~ \.php${
            root /home/mike/Projects;
            fastcgi_pass 127.0.0.1:9000;
            fastcgi_index index.php;
            include /opt/nginx/conf/fastcgi_params;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }
}

我在以下网址的网站给出了以下内容:

作品

http://

403禁止错误

http://

我的文件夹有权限755.
最佳答案
如果您希望/index.php为/提供请求,则需要将index.php添加到index指令中.

作者: dawei

【声明】:滨州站长网内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。

为您推荐

【免责声明】本站内容转载自互联网,其发布内容言论不代表本站观点,如果其链接、内容的侵犯您的权益,烦请提交相关链接至邮箱xwei067@foxmail.com我们将及时予以处理。

Copygight © 2016-2024 https://www.0543zz.com All Rights Reserved.滨州站长网

站长:xwei067#foxmail.com(请把#换成@)

联系我们

联系我们

0577-28828765

在线咨询: QQ交谈

邮箱: xwei067@foxmail.com

工作时间:周一至周五,9:00-17:30,节假日休息