To redirect a site to URL with www using PHP, you can use the following PHP code
<?php
$domainName = $_SERVER['HTTP_HOST'];
if (strpos($domainName, 'www') === false) {
header("HTTP/1.1 301 Moved Permanently");
$urlNew = 'https://www.' . $domainName . $_SERVER['REQUEST_URI'];
Header("Location: $newUrl");
exit;
}
Add this code in your index.php file or another file included by index.php
See Redirect
Leave a Reply