-
Notifications
You must be signed in to change notification settings - Fork 570
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
为了防止在目录页刷新会提示404,Nginx和Apache都需要设置Rewrite #10
Comments
你的意思是在出现 404 时直接返回首页吗? 这个可能与项目无关,你可以自行设置 404 页面,例如 error_page 404 /error/404.html; 或者直接使用首页作为 404 页面 error_page 404 =200 /index.html; 可以提供一下您的复现过程吗? |
sorry,重点在最后一句 404意思是指,如果没有正确配置rewrite,,在目录页刷新会提示404 |
可以提供一下您的复现过程吗?我自己测试没有问题,刷新不会 404。 |
额,我说的是没配置好rewrite会有404,你的配置好了当然不会404,,,, |
@IptablesNat 我是按照我目前文档中配置的,没有使用 rewrite,也没有出现问题,没有 404 的问题。 server {
listen 80;
root /srv/www/down_52pojie_cn;
index /index.html;
server_name down.ganlvtech.cn;
} 请提供出错时的完整的 nginx 配置文件,帮助我分析问题原因。 |
Nginx 的 Rewrite 配置
Apache 的 Rewrite 配置
作者在
deploy.md
未给出 ngnix 的 rewrite 信息。The text was updated successfully, but these errors were encountered: