<?php
// Specify the new URL
$newURL = 'https://www.example.com/new-url';

// Redirect to the new URL
header('Location: ' . $newURL);
exit;
?>