在我的网络应用程序中,您通过 我需要更改哪些内容? 我做错了什么或我需要添加什么? p>
div>标题('Location:https:// domain)成功登录后重定向 .com / loggedin') code>但是当它完成重定向时,我会看到以下URL
http://domain.com:443/loggedin code>,这会给出(当然)以下错误 p>
400错误请求
您的浏览器发送了此服务器无法理解的请求。
理由:您正在向支持SSL的服务器端口说明HTTP。
而是使用HTTPS 请访问此网址的方案。
code> pre>
In my web app you get redirected after successful login via header('Location: https://domain.com/loggedin')
but when its finished redirecting I get to following URL http://domain.com:443/loggedin
which give (of course) following error
400 Bad Request
Your browser sent a request that this server could not understand.
Reason: You're speaking plain HTTP to an SSL-enabled server port.
Instead use the HTTPS scheme to access this URL, please.
What do I have to change? What did I do wrong or what do I have to add?