Forum Moderators: coopster
This attitude is probably your biggest problem. You are either senior enough to manage someone to do it, rich enough to pay someone to do it, or you are going to have to learn to do it yourself. Since you are posting in here, I'll assume the last and give you some code:
Couple ways:
<?php
Header ("Location: <new page>");
?>
You can also use the redirect meta tag if you do not run PHP.
<META HTTP-EQUIV=refresh CONTENT="n; URL=somewhere">
Where n is the number of seconds, and somewhere is the url you want to go to.
Try taking this code:
"<META HTTP-EQUIV=refresh CONTENT="n; URL=somewhere">"
and put it in a file called "redirectpage.html". Use notepad or something.
And upload it (ftp or have your webmaster do it) to your webserver in the document root directory.
Make sure "somewhere" is the webpage you're redirecting to. eg: if you're redirecting to [yahoo.com...] then the contents of the file "redirectpage.html" should be
<META HTTP-EQUIV=refresh CONTENT="1; URL=http://www.yahoo.com">