Nginx 重定向错误

Nginx 重定向错误

我想将所有请求重定向到不存在的 URL(文件不存在:在 nginx 日志中)http://example.com/example到索引页 httt://example.com。

这是我的 nginx 配置:

server {
    listen 80;
    server_name example.com www.example.com;

    access_log off;
    #access_log /srv/www/example.com/logs/example.com-acc main;
    error_log /srv/www/example.com/logs/example.com-err;

    client_max_body_size 256m;

    location / {
        try_files $uri /index.php$is_args$args; # redirect to index
        proxy_pass http://127.0.0.1:8080;
        proxy_redirect off;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

        proxy_read_timeout 300;
        proxy_buffer_size 16k;
        proxy_buffers 32 16k;
    }

    location ~* \.(jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js|swf|flv|avi|djvu|mp3|mp4|ogv|3gp|otf)$ {
        root /srv/www/example.com/htdocs/public;
    }

    include vhost.inc.conf;
}

但当我尝试点击错误的链接时,总是会出现“500 内部错误”。

在我的错误日志中我得到:

19419 重写或内部重定向循环,同时内部重定向到“/index.php”,客户端:xxx.xxx.xxx.xxx,服务器:example.com,请求:“GET / HTTP/1.1”,主机:“example.com”

这里有什么问题?

相关内容