安全重定向
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安全重定向相关的知识,希望对你有一定的参考价值。
If your page has already sent headers to the browser you cant redirect with headers('Location:' . $url);But you can use the following:
/** * Usage: safe_redirect('http://www.google.com'); * */ function safe_redirect($url){ ?><script> <!-- window.location= "<? echo $url; ?>" //--> </script> <? }
以上是关于安全重定向的主要内容,如果未能解决你的问题,请参考以下文章