PHP 重定向与 http 身份验证

发布于 2024-12-09 02:13:59 字数 79 浏览 0 评论 0原文

如何重定向到一个url并在php中传递登录名和密码http,即http基本登录但不受用户干扰?没有登录弹出窗口!

谢谢, 塞尔索

How to redirect to a url and pass through in php the login and password http, ie, the http basic login but without user interference? without login pop-ups !

thanks,
celso

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

难理解 2024-12-16 02:13:59

简短的回答是你不能。

重定向到 http://user:[电子邮件] protected]/ 适用于某些浏览器,但并非全部。

您可以使用替代身份验证模块,并将值推入其中 - 例如,如果您是,则在 Apache 上使用 mod_authmemcookie很高兴像这样调整服务器配置(并且有一个可以使用的 cookie)。

Short answer is that you can't.

Redirecting to http://user:[email protected]/ will work on some browsers but not all.

You could use a substitute authentication module, and push a value into it - e.g. using mod_authmemcookie on Apache if you're happy to tweak the server config like this (and have a cookie you can use).

遗忘曾经 2024-12-16 02:13:59

不知道我是否理解正确,但如果您只想重定向到 http-auth 安全的网站,而不需要烦人的弹出窗口,您可以在 url 中发送用户名和密码:

http://username:[email protected]/adminpanel/

请注意,使用此解决方案时,密码在 url 中可读,并且某些浏览器(仅 IE <=6,这在较新版本中已禁用)不支持此功能 - 也许这对您来说是个问题。有关更多信息,请查看这篇文章

don't know if i understood you right, but if you only want to redirect to a http-auth-secured site without the annoying popup, you can sent the username and password in the url:

http://username:[email protected]/adminpanel/

note that, with this solution, the password is readable in the url and some browsers (IE only <=6, this was disabled in the newer versions) don't support this - maybe thats a problem for you. for more information, take a look at this article

洛阳烟雨空心柳 2024-12-16 02:13:59

使用基本身份验证,浏览器将在服务器请求时重新发送凭据。但这仅适用于相同的主机名。

With basic auth, the browser will re-send credentials when requested by the server. This only works for the same hostname though.

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