Hiya everyone, I need a HTML code that will automatically redirect somone when they visit a page. I CANNOT use htaccess file to do this it has to be an HTML code. Can anyone help Thanks
Hi, use something like: <META HTTP-EQUIV="Refresh" CONTENT="3; URL=someURL"> replace values for Content (3 means a redirect is done after 3 seconds) and URL If you use php: <?php header( 'Location: http://www.yoursite.com/new_page.html' ); ?> Hope that helps. Robert.