How to Website Redirect to another site ?
SEO Help and Tips
How to Website Redirect to another site ?
Here is the easy way to redirect any website to another one site by code:
Head Section:
'' <link rel="canonical" href="your site address/primary-page"/> ''
Body Section:
<h2>Redirect to a Webpage</h2>
<p>The replace() method replaces the current document with a new one:</p>
<button onclick="myFunction()">Replace document</button>
<script>
function myFunction() {
location.replace("Targated website address")
}
</script>
Comments
Post a Comment
Thanks for your Comments.