自动将所有外部链接转换为会员链接



我希望能够自动将链接更改为WordPress和MyBB安装上的会员链接。这将有助于减少管理链接的时间,以防将来需要更改代码,因为您知道广告商不断更改会员网站。

这是我的Bestylish.com会员计划的设置。如果假设URL:http://www.bestylish.com/men-shoes
我需要做到这一点:-http://affiliates.tyroodr.com/ez/arttnpokwow/&lnkurl=http://wwwww.bestylish.com/men-shoes?utm_source=tyroo;3D12JUNE12_20PerCenteOssoffer

我还需要在开始www.bestylish.com之前始终拥有http://如果它在那里,则可以,如果它不存在,那么我需要添加它,否则它不会正确地重定向。

同样的事情在这里:更改所有网站链接到会员链接会自动

,但这仅在最后一个附加代码附加,而我也必须在开始时附加代码。另外,这并不是关于每次开始添加http://。谁能帮我吗?

谢谢。

您可以使用非常相似的jQuery函数来更新链接,您可以在当前链接之前和之后添加新的URL信息,请参见下文:

// attach a click even to all <a> elements
$("a").click(function() {
    addAffiliate(this);
});
// your affiliate URL and querystrig variable for redirect
var affiliateURL = "http://affiliates.tyroodr.com/ez/arttnpokwow/?lnkurl=";
// additional querystring values to append
var addQueryString = "&utm_source=tyroo&utm_medium=affiliate&utm_campaign=12june12_20percenteossoffer";
// function called when link is clicked
function addAffiliate(link) {
    // make sure this link does is not to the current site and does not contain the affiliateURL
    if ((link.href).indexOf(location.host) < 0 && (link.href).indexOf(affiliateURL) < 0){
        // update the link with the affiliateURL, the url encoded link, and the additional query string
        link.href = affiliateURL + escape(link.href) + addQueryString;
    }
    alert(link.href);
    // return true to follow the link
    return true;
}

我认为您正在寻找此类工作。

请访问=> http://nullrefer.com/?http://freekaamaal.com/discuss/index.php

加入此论坛,并尝试在线程中发布任何链接,它将转换为会员链接。我也在寻找这种类型的脚本,但无法弄清楚它的圆顶。

最好的问候

bbpowercis

首先,如果广告客户更改其平台或会员网络,则可能会更改所有链接(实际和会员链接),因此您需要做您的自定义事情对于每个商人,您的推广。

我可以建议您尝试拥有一些会员链接披肩/管理插件或服务。您可以尝试bit.ly来管理和堵塞链接,并且有许多免费的wordpress插件可以让您这样做:http://wordpress.org/plugins/search.php?q=link Clookcloak&amp;P>

如果您想要更高级的东西,则可能会查看:http://autoautofiliatelinks.com/

相关内容

  • 没有找到相关文章

最新更新