Hi dudes! I have a problem. www.freewebs.com doesn´t support PHP so I have to use some other way to redirect visitors directly before my page shows anything to other site. How can I do that with HTML? in PHP I mean: <?php header('Location: http://www.example.com'); ?> Thanks a lot!
<meta http-equiv="Refresh" content="0; URL=http://www.example.com"> try that, the content is the time delay
Voimis sometimes people Disable Meta refresh in their web browsers. So your page might not get redirected. Have the Javascript redirect code as well just incase meta-refresh is disabled: <script type="text/javascript"> <!-- window.location = "http://www.yea-baby.com/" //--> </script> HTML:
Is it possible to disable this code? And should I add <html><body></body></html> -tags to my page? Thanks a lot!