Thursday, 12 October 2023

Redirect to a Random Link with This HTML Code

Copy and paste given code . You can replace link as per your requirement.


<script type="text/javascript">


var urls = new Array();

urls[0] = "https://sakhihosting.in";

urls[1] = "https://sakhihosting.in/domain-registration/index.php";

urls[2] = "https://sakhihosting.in/web-hosting/index.php";

urls[4] = "https://sakhihosting.in/virtualserverlinux-hosting.php";

urls[5] = "https://sakhihosting.in/dedicated-servers.php";

urls[6] = "https://sakhihosting.in/dedicated-servers-windows.php";

urls[7] = "https://sakhihosting.in/web-hosting/windows-hosting.php";

urls[8] = "https://sakhihosting.in/optimized-wordpress-hosting.php";

urls[9] = "https://sakhihosting.in/reseller-hosting.php";

urls[10] = "https://sakhihosting.in/support/contact-us.php";


var random = Math.floor(Math.random()*urls.length);


window.location = urls[random];


</script>