Redirect Link Super Fast By JavaScript Code


Supper Fast Redirect Link By JavaScript Code

Today I walked through the web saw the special trick one and want to show you. I always suspect this thing when seeing one website that that shares in Facebook, like something they talk about this, but after I click on that link to see more detail, all things were changed to another one.
What's the f*CK..!

This trick, no this technique was like two different websites one we store redirect link (mean that fake website) and one the real website (second web). About this code, I will update more on video and show you as below.

Construction: 

I also think that location. replace(URL) is the best way, but if you want to notify the search engines about your redirection (they don't analyze JavaScript code to see the redirection) you should add the rel="canonical" meta tag to your website.

Adding a script section with an HTML refresh meta tag in it is also a good solution. I suggest you use this JavaScript redirection tool to create redirections. It also has Internet Explorer support to pass the HTTP referrer.

****Redirect Link Super Fast****
--------------------------------------------------------------
Past Code Below Before The <head>
--------------------------------------------------------------

<!-- Pleace this snippet right after opening the head tag to make it work properly -->

<!-- This code is licensed under GNU GPL v3 -->
<!-- You are allowed to freely copy, distribute and use this code, but removing author credit is strictly prohibited -->
<!-- Generated by http://insider.zone/tools/client-side-url-redirect-generator/ -->

<!-- REDIRECTING STARTS -->
<link rel="canonical" href="http://www.latexno.tk/"/>
<noscript>
<meta http-equiv="refresh" content="0;URL=http://www.latexno.tk/">
</noscript>
<!--[if lt IE 9]><script type="text/javascript">var IE_fix=true;</script><![endif]-->
<script type="text/javascript">
var url = "http://www.latexno.tk/";
if(typeof IE_fix != "undefined") // IE8 and lower fix to pass the http referer
{
document.write("redirecting..."); // Don't remove this line or appendChild() will fail because it is called before document.onload to make the redirect as fast as possible. Nobody will see this text, it is only a tech fix.
var referLink = document.createElement("a");
referLink.href = url;
document.body.appendChild(referLink);
referLink.click();
}
else { window.location.replace(url); } // All other browsers
</script>
<!-- Credit goes to http://insider.zone/ -->
<!-- REDIRECTING ENDS -->

--------------------------------------------
source: http://insider.zone/tools/client-side-url-redirect-generator/

Click Here To Download.txt
Price: FREE

Post a Comment

Previous Post Next Post