There are several ways on how to do URL forwarding!
Manual method:
Please follow < a href="http://newurl.com">link< /a>!
Header method:
<?
header("Location: http://newurl.com");
?>
Use of 301 redirect method:
HTTP/1.1 301 Moved Permanently
Location: http://newurl.com/
Content-Type: text/html
Content-Length: 174
Moved
This page has moved to http://newurl.com/.
Use Meta-refresh method:
< meta http-equiv="refresh" content="30;url=index.html" >
The above method are just some basic idea!