Redirect Using index.php Print

  • redirect
  • 21

Redirect using php code

Create index.php code and put this code inside

<?
Header( "HTTP/1.1 301 Moved Permanently" );
Header( "Location: https://www.newurl.com" );
?>

 

Replace new url with your new URL


Was this answer helpful?

« Back