What is the best method to redirect a subdomain to a subdirectory on a different domain using PHP?

To redirect a subdomain to a subdirectory on a different domain using PHP, you can use the header() function to send a 301 redirect status code along with the new location. This will inform the browser to redirect to the specified subdirectory on the different domain.

<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: https://differentdomain.com/subdirectory");
exit();
?>