刷新页面会导致 401 错误 - Angular 8
当我击中 http:// localhost:4200 或 http:// localhost:4200/noveotpasswordemail 在我的本地环境中,它可以正常工作。
在我的生产环境中打开索引页面,然后单击链接进入另一页,也可以使用。但是,当我刷新页面或直接转到 http://< prod url>/noveotpasswordemail
时,它不起作用,然后我会收到以下错误:
//i.sstatic.net/eoihn.png“ rel =“ nofollow noreferrer”> novetpasswordemail ,并且无法找到 值得它返回401,但在本地工作正常。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在服务器配置中,您需要渲染不是静态文件或文件夹的每个路由的index.html。路由应该由角度应用程序而不是服务器来处理。
In your server config, you need to render index.html every route that is not a static file or folder. Routing should be handled by the angular application, not the server.
我将通过以下方式实现这一目标
I will achieve this through