Hi every1. Want to get your help to know ".htaaccess" completely. please right here the html redirection code.
Use this in your .htaccess file redirect 301 /olddirectory/oldfile.html http://example.com/newdirectory/newfile.html
What robin said above is correct. Try that. You can also use 301 redirection code (search on google). It is also effective.
Hi Adom, You should try this one: <meta HTTP-EQUIV="Reload" content="0; url=Link"> I hope this is helpful for you.
you can try out this code on the index page hope it work just paste it somewhere within the body <script type="text/javascript"> var cnt = 20; function countdown() { if (cnt <= 1) { measurement = "second"; } else { measurement = "seconds"; } if(cnt==-1){ window.location.href='http://www.yourdomainname.com'; //document.getElementById('hidden').style.display="block"; //document.getElementById('timer').style.display="none"; }else{ document.getElementById('timercountdown').innerHTML = cnt + " " + measurement; cnt--; _timer = setTimeout("countdown()", 1000); } } var _timer = setTimeout("countdown()", 1000); // start ticking process </script> <span id="timercountdown"></span>