当用户注销后单击后退按钮时,如何重定向到主页?

发布于 2024-10-20 01:52:13 字数 112 浏览 4 评论 0原文

我想知道当用户点击后退按钮注销后如何将他们重定向到我的主页,有点像 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

糖粟与秋泊 2024-10-27 01:52:13

如果您使用会话,您可以在查看经过身份验证的页面时检查用户是否已登录,如果没有,则将标头发送到您的主页。

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.

陪我终i 2024-10-27 01:52:13

Javascript 似乎是做到这一点的方法。只需检查用户是否已登录,如果没有,则通过 document.location = "http://my.home.page"; 重定向到主页。

我猜你也有 PHP 会话,所以你可以在那里进行重定向,而不是依赖 Javascript。

header ('Location: http://your.home.page');

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.

header ('Location: http://your.home.page');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文