当用户注销后单击后退按钮时,如何重定向到主页?
我想知道当用户点击后退按钮注销后如何将他们重定向到我的主页,有点像 Facebook 那样。我正在玩一些 JavaScript,但似乎没有任何效果。
PS:这将用于 WordPress 主题。
I was wondering how can I redirect users to my hompage after they logged out when they hit the back button, kind of like facebook does. I was playing around with some javascript but nothing seemed to work.
PS: This will be for a Wordpress theme.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您好,请检查wp_logout_url($redirect_url)。
Hi there check the wp_logout_url($redirect_url).
如果您使用会话,您可以在查看经过身份验证的页面时检查用户是否已登录,如果没有,则将标头发送到您的主页。
If you use sessions, you can check if the user is logged in when viewing an authenticated page, and if not, send the headers to your homepage.
Javascript 似乎是做到这一点的方法。只需检查用户是否已登录,如果没有,则通过 document.location = "http://my.home.page"; 重定向到主页。
我猜你也有 PHP 会话,所以你可以在那里进行重定向,而不是依赖 Javascript。
Javascript seems like the way to do it. Simply check if the user is logged and if not, do a redirect to the home page via a document.location = "http://my.home.page";
I guess that you have the session in PHP too so you could just do the redirect there instead of relying on Javascript.