Hal yang sama terjadi pada situs web saya, tetapi saya memutuskan menggunakannya untuk keuntungan saya meningkatkan jumlah akses di situs web saya, ketika seseorang mengakses domain aneh itu, itu dialihkan ke situs web resmi saya, ikuti kode PHP yang berfungsi untuk saya:
<?php
//insert this code in the very begin of the page
if ($_SERVER['SERVER_NAME']) != "www.sample.com"){
if ($_SERVER['SERVER_NAME'] != "sample.com"){
echo "
<script>window.location.replace(\"https://sample.com/\")</script>;
";
//if the script fails for some reason, the follow link will appears.
echo "<a href='https://sample.com'>Click here </a>to go to the official website ";
die();
}
}
?>