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