被 res.writeHead 301 nextjs 重定向后无法返回

问题描述

我正在研究服务器端重定向

在 getinitalProps 里面我做了这样的事情

const { res } = ctx

if(some condtion === true){
    redirection
    res.writeHead(301,{
      Location: 'new/url/destination/here'
    });
    res.end();
}

它有效,但问题是即使条件为假,我也无法再次访问此页面

删除了整个块,但仍然无法转到此页面。尝试重新启动服务器但没有用。需要帮助

我按照这个解决方案但是使用了 301 而不是 302 Conditional redirection in Next.js

提前致谢。

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)