用php做301轉址

用php直接301轉向新網址

<?php  
  header("HTTP/1.1 301 Moved Permanently"); 
  header("Location: https://quankege.com/"); 
  header("Connection: close");
?>