2016-07-19 24 views
1
<html> 
<head> 
<title>YOUR PAGE TITLE</title> 

<meta http-equiv=”refresh” content=”0;url=http://YOUR AFFILIATE URL”> 
</head> 
<body> 
<p>Redirecting, please wait. If you’re not redirected within a couple of seconds, click here:<br /> 
<a href=”http://tracking.vcommission.com/aff_c?offer_id=2371&url=http%3A%2F%2Fwww.naturesbasket.co.in%2FOnline-grocery-shopping%2FFruits-Vegetables%2FFruits%2F32_0_0%3Futm_source%3Dvcomm%26utm_medium%3Dcps%26utm_campaign%3Dvcommron”>PRODUCT NAME</a> 

</p> 
</body> 
</html> 

アフィリエイトのURLまたはアフィリエイトユーザーコードやトラッキングコードは、誰でも簡単に見えるので安全ではありません。私は、ウェブサイトを保存するためにリダイレクトする前に、トラッキングURLを隠したかったのです。例えばPHPを使用して実際の店舗URLにリダイレクトする前にアフィリエイトURLを非表示にするにはどうすればよいですか?

が、私はhttp://tracking.vcommission.com/aff_c?offer_id=2371&url=http%3A%2F%2Fwww.naturesbasket.co.in%2FOnline-grocery-shopping%2FFruits-Vegetables%2FFruits%2F32_0_0%3Futm_source%3Dvcomm%26utm_medium%3Dcps%26utm_campaign%3Dvcommron

などのアフィリエイトリンクを持っていると私はあなたが非表示にトラッキングURLを試してみて、このようなPHPでリダイレクトする必要があります店のウェブサイト

答えて

1

vcommissionのURLを非表示にしたかったし、直接オープン:

<?php 
    ob_start(); 
?> 
<html> 
<head> 
<title>YOUR PAGE TITLE</title> 

<meta http-equiv=”refresh” content=”0;url=http://YOUR AFFILIATE URL”> 
</head> 
<body> 
<p>Redirecting, please wait. If you’re not redirected within a couple of seconds, click here:<br /> 
<a href=”http://tracking.vcommission.com/aff_c?offer_id=2371&url=http%3A%2F%2Fwww.naturesbasket.co.in%2FOnline-grocery-shopping%2FFruits-Vegetables%2FFruits%2F32_0_0%3Futm_source%3Dvcomm%26utm_medium%3Dcps%26utm_campaign%3Dvcommron”>PRODUCT NAME</a> 


<?php 
header("refresh:5;url=http://tracking.vcommission.com/aff_c?offer_id=2371&url=http%3A%2F%2Fwww.naturesbasket.co.in%2FOnline-grocery-shopping%2FFruits-Vegetables%2FFruits%2F32_0_0%3Futm_source%3Dvcomm%26utm_medium%3Dcps%26utm_campaign%3Dvcommron"); 
?> 
</p> 
</body> 
</html> 

「refresh:{put count off seconds」が5秒後にリダイレクトされるようになりました。

関連する問題