PHP 会话在两个单独的应用程序中混淆
我正在利用 PHP (7.3) 会话进行用户身份验证。
应用程序 #1 已经存在多年并且运行良好。
我最近在同一服务器上的不同路径上创建了应用程序#2。
如果我登录到应用程序 # 1,然后导航到应用程序 # 2,它会获取应用程序 # 1 的会话并允许在不登录的情况下进行访问。
任何人都可以提供如何创建每个应用程序独有的不同 PHP 会话的建议吗?
任何帮助表示赞赏。
谢谢。
丹尼尔
I am utilizing PHP (7.3) sessions for user authentication.
Application # 1 has been in place for many years and working well.
I recently created Application # 2 on the same server on a different path.
If I log into application # 1, then navigate to App # 2, it is picking up the session for App # 1 and allowing access without logging in.
Can anyone offer any advise how to create distinct PHP sessions that are unique to each application?
Any help appreciated.
Thanks.
Daniel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 apache,则可以将此行添加到
.htaccess
文件中的项目中。不要忘记更改域名。这应该在您的应用程序中分割会话
If you are using apache, you can add this line to your projects in your
.htaccess
file. Don't forget to change the domain name.This should split the session in your applications