How to Redirect each link on the webpage through another link using JavaScript or any html?
I have a website - www.example.com
I have few links on each page like -
I want the javascript that can be added to each webpage and will give the below results -
whenever someone clicks on the links - it should show a link like this - www.example.com/redirect?=www.link1.com
Now this redirect script should calculate the redirect path based on links like and whenever some user clicks on them it should go like below-
link1 should be redirected as below - www.affiliate1.com/r/www.link1.com
and link2 should be like below - www.affiliate2.com/r/www.link2.com
Please advise on ow to achieve this. I am not a code expert but I have few websites where they are doing it.
var remember = [].slice;
var to = 'a';
var post = document.getElementsByTagName(to);
var relevant = remember.call(post);
var code = 'https://example.com?redirect=';
relevant.forEach(function(atag) {
var href = atag.href;
if ( href ) {
atag.href = code + encodeURIComponent(href);
}
});
©2020 All rights reserved.