/** * 页面重定向 * @param $location */ function urls_redirect( $location ) { if( !headers_sent() ) { header( "Location: $location" ); } else { echo \'<script type="text/javascript"> window.location="$location"; </script>\'; } die(); } 相关文章: