/** * 页面重定向 * @param $location */ function urls_redirect( $location ) { if( !headers_sent() ) { header( "Location: $location" ); } else { echo \'<script type="text/javascript"> window.location="$location"; </script>\'; } die(); } 相关文章: 2021-07-27 2021-11-06 2021-12-14 2021-08-14 2021-11-13 2022-01-16 2021-12-26