JavaScript Redirection – Domain Name. This code is Ready to Put in your website.
Ok let’s go:
<html> <head> <script type="text/javascript"> // ####################################################### // Multilingual PHP Redirect // Don't Break My b***s - Gimme Code! Project // Author: Andrea Tonin - http://blog.lucedigitale.com // This code come with absolutely no warranty // If you use this code in your project please give a link to http://blog.lucedigitale.com // Thanks in advance // ####################################################### function doRedirect() { //function to redirect the browser location.href = "http://mywebpage.com/"; } window.setTimeout("doRedirect()", 4000); //Delay Time ( 4000 milliseconds ) </script> </head> <body> <center> <br> <b><h1>You are being redirected to other site.</h1> <br> <br> <h1>If you are not redirected within 4 seconds</h1></b> <br> <h1><a href="http://mywebpage.com/">CLICK HERE</h1></a> </center> </body> </html>
To setup the script change:
– http://mywebpage.com/ -> with your webpage
– 4000 delay time with your delay time; 1 second = 1000 milliseconds.