PHP
<?php //302重定向 $url = "http://www.cnblogs.com/mengor"; header( "Location: $url" ); //301重定向 $url = "http://www.cnblogs.com/mengor"; header( "HTTP/1.1 301 Moved Permanently" ); header( "Location: $url" );
meta
<meta http-equiv="refresh" content="5;url=http://www.cnblogs.com/mengor">
js
<script> window.location.href="http://www.cnblogs.com/mengor"; </script>