Making money online with affiliate links? 제휴사 링크와 함께 온라인으로 돈을 쓴다고? Here’sa quick and dirty way to cover your tracks and push more visitors to your affiliate pages which will ultimately result in a few extra sales. 당신의 흔적을 감추려하고 귀하의 제휴사 페이지에 몇 가지 추가로 판매 결과는 궁극적으로 더 많은 방문자를 밀어 여기에 신속하고 더러운 방법. I’m going to show you how this is possible using a simple PHP script. 나는이 가능한 간단한 PHP 스크립트를 사용하는 방법을 보여주겠다.

Create a file called products.php (you can name it something else but if you do make sure you change it where applicable in the parts below). products.php라는 파일을 만듭니다 (뭔가 다른 이름을 할 수 있지만 당신이 어디에있다면 아래 부분에 해당)을 변경했는지 확인하십시오. Now put something like this in it and change the URL’s to be whatever you want. 그것과 변화 지금은 이렇게 뭔가를 집어 URL은 당신이 원하는 건 뭐든. You may need to create more elseif statements if you have a lot of affiliate links. 제휴사 링크의 여지가 있으면 더 elseif 문을 만들어야 할 수도있습니다. Also make sure you put this code before ANY html for it to work, otherwise you’ll get a “headers already sent” error. 또한 작동하는 HTML을하기 전에 언제든지, 그렇지 않으면 "헤더가 이미"오류 보낸거야이 코드 뒀겠군요.

  1. <?php
  2. if ( $go == product1 ) { //you can name "product1" anything, again make adjustments in your code later. ($ if ( $go == product1 ) { //you can name "product1" anything, again make adjustments in your code later. / if ( $go == product1 ) { //you can name "product1" anything, again make adjustments in your code later.
  3. $thislink = "http://affiliatesitelink.com/cars.php" ;
  4. }
  5. elseif ( $go == product2 ) {
  6. $thislink = "http://affiliatesitelink.com/moneonline/" ;
  7. }
  8. elseif ( $go == product3 ) { //just add more "elseif" statements for more products
  9. $thislink = "http://affiliatesitelink.com/loans.html" ;
  10. }
  11. else ( $go == product4 ) { //note I end with a plain "else"
  12. $thislink = "http://affiliatesitelink.com/ebook.asp" ;
  13. }
  14. //Now the redirect
  15. header ( ‘Location: ‘ . $thislink ) ; $ header ( ‘Location: ‘ . $thislink ) ;
  16. ?>

Mod Rewrite & .htaccess 침해 재작성 &. htaccess로

Technically you could call links up now by doing http://domain.com/products.php?go=product1 or http://domain.com/products.php?go=product2 ect. 기술적으로 당신은 지금 요법 http://domain.com/products.php?go=product1 또는 http://domain.com/products.php?go=product2 수행하여 링크를 부를 수있다. Why stop there? 왜 멈추지? If your server has mod_rewrite enabled (very likely it does these days) you can put something like this in a .htaccess file and upload it to your root directory: mod_rewrite 경우 서버를 활성화하고있다 (아주 이러한 일)이 같은. htaccess로 파일에 뭔가를 넣을 수와 귀하의 루트 디렉토리에 업로드가 높다 :

  1. Options FollowSymLinks
  2. RewriteEngine on
  3. RewriteRule products / ( .* ) / ?$ / products . php?go = $ 1 가지 RewriteRule products / ( .* ) / ?$ / products . php?go = $ 1

Note there is a space after the ‘$’. 메모에는 '$'이후 공간입니다. After this is in place you should be able to call up the affiliate redirect with a link like this: 이 후이 같은 장소에있는 링크와 제휴를 부를 수있을 것입니다 리디렉션 :
http://domain.com/products/product2/ (with or without the slash) http://domain.com/products/product2/ (함께 또는 슬래시없이)

Affiliates Links VIA ClickBank 제휴사 링크를 통해 ClickBank

If you promote something like ClickBank products on your site there’sa similar way to cover your tracks. 만일 당신의 흔적을 숨기기 위해 귀하의 사이트와 유사한 방식에 ClickBank 제품 there'sa 같은 것을 추진하고있습니다. This ones even quicker as we already know what to expect from each URL. 이 사람도 빨리 우리가 이미 각 URL에서 무엇을 기대하는지. Its consistent every time except for one thing. 한 가지를 제외하고는 일관성을 쓸께요. (two if you use their built in sales tracker) (2 추적기를 사용하는 경우 매출에 내장)

  1. <?php
  2. $cbid = "yourcbid" ; //put your clickbank ID here ID를 $cbid = "yourcbid" ; //put your clickbank ID here
  3. $affiliate = "http://" . $cbid . "." . $affiliateid . ".hop.clickbank.net/?tid=" . $tid ;
  4. header ( ‘Location: ‘ . $affiliate ) ; $ header ( ‘Location: ‘ . $affiliate ) ;
  5. ?>

Three lines…not too bad. 세 줄의 ...별로 나쁘진 않아. Again make sure its the first thing at the top of the page. 또 페이지의 상단에 자사의 첫 번째 가지는 확실하다. Your content in the page will not matter at all (after the header redirect is ent it doesn’t read anything else). 페이지에 귀하의 콘텐츠에 모두 (헤더 리디렉션 후 아무것도하지 않는 다른 읽을 돼요) 문제가되지 않습니다. Your resulting link would look like this: 귀하의 결과 링크는 이런 모양이 될 :
http://domain.com/products.php?go=affiliateid&tid=3 http://domain.com/products.php?go=affiliateid&tid=3

Your .htaccess rewrite rule will look something like this: 네. htaccess를 이런식으로 생겼을 것이다 재작성 규칙 :
RewriteRule products/(.*)/(.*)/?$ /products.php?go=$1&tid=$2 RewriteRule 제품 /(.*)/(.*)/?$ / products.php? tid = $ 2 = $ 1 & 가야
Then you can call the link up using this: 그렇다면 이것을 사용하여 링크를 호출할 수있습니다 :
http://domain.com/products/affiliateid/3/ http://domain.com/products/affiliateid/3/
You can do this with any affiliate link service that has a standardized way of linking to the products in their database. 당신이 자신의 데이터베이스에 연결하는 제품의 표준화된 방법이있는 제휴사 링크 서비스를 함께 할 수있습니다.

The Logic Behind “Blind Folding” Affiliate Links 뒤에있는 논리는 "눈먼 접는"제휴사 링크

The way I see it is the visitor eventually will realize the link has directed them to another site. 나는 그것은 방문자가 결국 다른 사이트의 링크를 걸 깨닫게 될 겁니다들을 볼때 감독이다. However, they are more likely and willing to check out that offer if you have provided them a link that appears to go to another page on your own site. 그러나 그들은 더 많은 가능성을 제공하고 체크 아웃 기꺼이 그들이 경우 다른 페이지로 가서 자신의 사이트에 나타나는 링크를 제공하고있다. Half the battle is getting them through the door so they can truly determine if that product interests them. 그래서 그들은 진정으로 확인할 수있습니다 절반은 이룬 문을 통해 제품의 이익을 만일 그렇다면 그들지고있다. If they didn’t click on the link they would have never known what they were missing if that visitor turns into a sale. 만약 그들이 판매로 변한다면 방문자들이 실종됐다 줄은 꿈에도 몰랐을 링크를 클릭하지 않았다. Using something like TinyURL.com appears as a dodgy link to your visitors as I mentioned in Wrong Turn TLA - TinyURL Covering your Affiliate Links . 내가 방향을 잘못 잡는 바람 TLA에서 언급한 - 귀하의 제휴사 링크 TinyURL 엄호 TinyURL.com 같은 것을 이용하여 방문자에게 맛없어 링크로 나타납니다. If for nothing else it is a great way to log your visitors and track who clicks on what if you implement that with an SQL DB. 귀하의 방문자를 로그인하고 누가 무엇을 구현하는 경우에 클릭을 추적하는 것도 좋은 방법입니다 다른 사람을 위해서는 SQL DB를 가진 경우. Which brings me to the topic. 어느 날 주제로한다.

If you’re really clever you’ll use some mySQL and can generate usage reports by including a simple ADD query in your products.php code. 만약 당신이 정말로 당신이 사용됩니다 똑똑한 일부와 MySQL하여 products.php 코드에서 사용하는 간단한 ADD가 쿼리를 포함하여 리포트를 생성할 수있습니다. This could give you insight into the behavior of your users since ClickBank doesn’t tell you how many times a person clicked through each link. 이후 ClickBank 사람은 각 링크를 통해 클릭 몇 번이나 말씀하지 않습니다 이렇게하면 사용자의 동작에 대한 통찰력을 제공할 수있습니다. Then its just a matter of creating a simple form and/or query page to show the usage for each. 그럼 간단한 양식 및 / 또는 쿼리 페이지가 각에 대한 사용법을 만들어 보여주는 단지 문제가있다. But that’s another day. 하지만 또 다른 날이 란다. If this is something you’re interested in seeing then comment on this page and I’ll make sure I write up a post on it sometime. 만약 당신이 페이지에 코멘트를보고에 관심이와 나는 가끔 그러고에 게시물을 쓸 수 있도록 할게 뭔가가있다.


3 Trackback(s) 3 트랙백 (들)

  1. Sep 7, 2007: Web 2.0 - The Ten Critical Affiliate Strategies | www.bestdocsite.org 9 월 7, 2007 : 웹 2.0 - 10 임계 제휴 전략 www.bestdocsite.org |
  2. Sep 8, 2007: Sweet Gain » Blog Archive » Link Storm -V- 9 월 8, 2007 : 달콤한 이득»블로그 아카이브»링크 스톰 - V를 -
  3. Mar 6, 2008: » Plugins and tools to help with SEO and affiliate sales > FiddyP 2008년 3월 6일 :»플러그인 및 도구 판매에 도움이 서장훈과 제휴사> FiddyP


3 Comment(s) On 3 코멘트 (시내)

"Increase Affiliate Income - Blindfolding Your Links" "제휴 소득 증가 - 귀하의 링크의 눈을 가린"
  1. MyAvatars 0.2 Andy Bailey - Sep 8, 2007 앤디 베일리 - 9 월 8, 2007

    Excellent simple script, I especially like how you use htaccess to use it. 우수한 간단한 스크립트, 특히 그것을 사용하는 방법 htaccess를 사용합니다. nice 훌륭한

  2. MyAvatars 0.2 Patches and Hacks - Sep 18, 2007 패치 및 해킹 - 9 월 18, 2007

    This is a great post but if you don’t want to write or modify php code or htaccess rules every time you want to add or change an affiliate link and you’re using wordpress you might want to look into my new plugin that will let you manage all those links from a nice web interface inside wordpress admin: 하지만 만약 당신이 큰 게시물을 작성 또는 PHP 코드 또는 htaccess로 규칙을 추가하거나 제휴사 링크를 변경하고 당신이 WordPress의 당신은 나의 새로운 플러그인으로 해주는보고 싶지 때마다 수정할 수도를 사용하고 싶지 않아 당신이 WordPress의 관리자 안으로 멋진 웹 인터페이스에서 모든 관리들을 링크 :
    Here is where you can find out more about this free plugin: 여기서 당신이 무료 플러그인에 대해 더 알아낼 수있다 :
    http://patchlog.com/wordpress/hidden-affiliate-links/ http://patchlog.com/wordpress/hidden-affiliate-links/

  3. MyAvatars 0.2 Rob - Sep 18, 2007 - 9 월 18, 2007

    That plug-in looks great, but this tutorial is also for use on sites that don’t run wordpress 그 Plug - in을 맛있어 보이지만,이 튜토리얼은 또 워드를 실행하지 않는 사이트에서 사용하기 위해입니다 :)



Leave A Comment: 덧글을 남길 :

Comments RSS Feed 코멘트 RSS 피드

5 - 4 = 5 - 4 =

Custom Theme by Rob Malon | Content & Design © 2008 - Rob Malon [dot] Com. 맞춤 테마 롭 런에 의해 | 콘텐츠 & 디자인 © 2008 - 롭 메일런 [도트] 그럼요. "));
"));