当我尝试将表单从Https提交到http时,它显示:
当我提交页面时,它开始加载并且永远挂起。此表单提交适用于android PC和safari mac。
http:// 到 //
http://
//
如果你说它重定向到 https http ,您只需使用 header 或其他形式的重定向。
https
http
header("Location: http://example.com/other_page.php"); exit; // This stops further execution
或元方法:
<meta http-equiv="refresh" content="0;url=finalpage.html">
或Javascript:
window.location.replace("http://example.com/");
以上示例摘自/借用自:
How to make a redirect in PHP?