Hey guys in this tutorial we will discuss on how to Redirect web traffic from one website to another website via HTML sources code.

What is URL forwarding and how does it work
URL Redirect (also referred to as URL Forwarding) is a world wide web (www) technique which is used to redirect your domain's visitors (traffic) to a different URL. You can forward your domain name to any website, webpage, etc. which is available online. Redirects use status codes defined within the HTTP protocol.

This trick doesn't require any tech skills for it to work, but requires you to have access to one of the site's HTML source code (own the website') and a traffic redirect HTML code.

Requirements
1. A website/blog.
2. The below HTML redirect code.
3. Access to a websites HTML source code.
4. Below procedure/configuration.

Procedure
1. Make sure you have access to one of the website's HTML source code.
2. You have website A and website B, You want to redirect traffic from website B to website A.
3. Log in to website B, and then access the HTML source code of website B. Copy and paste the below HTML code to website B's HTML source code.
<meta http-equiv="Refresh" content="2; url='https://www.mydomain.com'" />
4. Paste the code below the <head> or </head> tag. before the browser redirects the user to website A. To redirect immediately, set this parameter to “0” seconds for the content attribute . Also change the URL to that of website A (http://www.mydomain.com).