gpt4 book ai didi

nginx 不重定向 404 错误

转载 作者:行者123 更新时间:2023-12-05 01:28:21 25 4
gpt4 key购买 nike

在我的网站上,我只有两个页面“index.php”和“page.php”,无论我输入什么,我都会被重定向到本地主机,例如,如果我转到 localhost/randompage 而不是被重定向到 404.html,我转到本地主机(即 index.php)

这是我的 session :

server {
listen 80;
server_name localhost;
root html;
index index.php;

location / {

if ($request_uri !~* '\/|page\.php\?.*') {
return 404;
}

try_files $uri $uri/ /index.php;
}

error_page 404 /404.html;
location = /404.html {
root html;
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}

location ~ \.php$ {
try_files $uri =404;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}

}

我应该改变什么?

最佳答案

我遇到了类似的问题。注释掉这一行修复它:

try_files $uri $uri/ /index.php;

try_files 检查给定的 URI 是否有效。如果不是,它会尝试查看给定的 URI 是否用作目录。如果失败,它会重定向到 /index.php。如果没有这一行,它将提供由 error_page 指示的 404 文件。

希望对你有用。

关于nginx 不重定向 404 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19759636/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com