Generic anchor text

catonkeyboard

Regular Member
Joined
Dec 7, 2011
Messages
273
Reaction score
172
You may have your own list but this is a good reference if you do not know what to have for a generic anchor for future link building jobs:

Click Here
Clicking Here
Go Here
Going Here
Read This
Read More
Find Out More
Discover More
Learn More
Read More Here
Discover More Here
Learn More Here
Click This Link
Visit This Link
Homepage
Home Page
Visit Website
Website
Web Site
Get More Info
Get More Information
This Site
More Info
Check This Out
Look At This
Full Article
Full Report
Read Full Article
Read Full Report
Get the facts
Related Site
Recommended Reading
Recommended Site
YOURURL.com
Visit Your URL
Check Out Your URL
Your Domain Name
Source
article source
click for source
link
more
Additional Info
Continue Reading
Continue
Continued
More Help
Resources
Extra resources
Bonuses
More Bonuses
More hints
helpful resources
Our site
our website
More about the author
helpful hints
more helpful hints
next page
additional reading



Spintax:


{Click Here|Clicking Here|Go Here|Going Here|Read This|Read More|Find Out More|Discover More|Learn More|Read More Here|Discover More Here|Learn More Here|Click This Link|visit this link|homepage|Home Page|Visit Website|website|web site|get more info|Get More Information|This Site|More Info|check this out|Look At This|Full Article|Full Report|Read Full Article|Get the Facts|related site|Recommended Reading|Recommended Site|source|article source|click for source|link|more|additional info|continue reading|continue|Continued|More Help|resources|extra resources|Bonuses|More Bonuses|More hints|helpful resources|next page}

More spintax

Click {Here|In this article|At this website|On this page|On this site|On this website}|Clicking Here|Go {Here|At this site|Now}|Going {Here|In this article|At this website|Listed here|On this page|On this site}|Read {This|This method}|Read {More|Much more|A lot more|Far more|Even more|Alot more|A great deal more|Significantly more}|Find Out More|Discover {More|A lot more|Additional|Alot more|Even more}|Learn {More|A lot more|Additional|Alot more|Even more|A great deal more}|Read More {Here|In this article|At this website|Listed here|On this page}|Discover {More|A lot more|Additional|Alot more|Even more|A great deal more} Here|Learn {More|A lot more|Additional|Alot more|Even more|A great deal more} Here|Click {This|That} Link|visit this {link|hyperlink|website link|web page link|weblink|backlink|website}|{homepage|home page|home-page|website|web site|webpage|web page|main page|internet site}|Home Page|Visit Website|website|web site|get more info|Get More {Information|Info|Details|Data|Facts|Information and facts|Material|Advice|Tips|Knowledge|Specifics|Imp ortant information}|This {Site|Website|Web site|Internet site|Web page|Web-site|Webpage|Blog|Internet page|Resource site}|More {Info|Data|Information|Details|Facts|Information and facts|Advice|Tips|Material}|check this out|Look {At This|Around This}|Full {Article|Post|Write-up|Content|Document|Posting|Report|Guide|Piece of writing}|Full {Report|Document|}

For those that are more PHP minded, I put together this script. Comments tell you how to configure it. Generates a list of links, so e.g. if you need 1000 links for a project and you want them to be natural, just change maxKws at the top to 1000, chuck in all your exact match kws and partial match kws, enter the url (without the http://www.) and load up the page.

You can override the number of kws setting by adding ?keywords=15 or ?keywords=1000 or whatever number of keywords you want to the URL.

Just c&p the script into a file on your server (preferably hidden from public access...)

PHP:
 <?php
$maxKws = 10; // Number of kws you want to generate, over-written by adding keywords= to the URL, so e.g. anchor.php?keywords=15 would over-ride whatever you set here, this is a default
$separator = "<br />"; // This determines what will separate the printed KW list, default is a line break (<br /> tag) but you may want to use | or , etc instead
$yourTargetKws = "kw1|kw2|kw3|kw4|kw5"; // put a | between each keyword you are targetting for your main anchors
$yourPartialKws = "partial kw1|kw1 partial|partial kw2|kw2 partial|etc"; // Your partial match kw's, in same format as above, so e.g. if your exact match is dog snuggies, put stuff like best dog snuggies, top snuggies, awesome dog stuff, i love snuggies
$yourWebsiteUrl = "yoursite.com"; // your domain excluding http:// and www. .. if targetting a specific page then e.g. yoursite.com/page, do not include the trailing slash
// Below are generic anchors, only change if you know what you're doing.. Good additions are your website's name, etc..
$genericAnchors = "here|click here|visit the website|visit website|website|link|visit site|read more|source|visit|home page|more...|site|active|more|home|view website|web site|homepage||this|via|official website|official site|go to website|(visit site)|visit homepage|company website|url|web|here.|this link|online|read more...|more..|yes|view publisher site||view site...|[link]|review||go!!|internet|how much is yours worth?|u rl|visite site|go|click|click here.|other|this site|moved here|blog|more...|more info|address|site web||the|3|.. [read more]|view|webpage|no title|this website|visit the site|anonymous|web link|clicking here|reference|visit this page|1|learn more|my company|visit our website|website 
link|sites|continue|image source|read|their website|visit their website|news|see here|original site|[source]|go here|great site|visit here|best site|resource|check this out|websites|click here!|2|us|continue reading this..|visit this site|to learn more|john|front page|download|hyperlink|twitter|(source)|main page|more information|webblog|read here|see page|read this|this one|my website|blog url|(visit)|site internet|browse|external link|check it out|redirected|site oficial|[read]|click this|this post|he said|she said|do you agree|weblink|right here|see|I was reading this|he has a good point|great post to read|over here|read what he said|look what I found|my latest blog post|a fantastic read|watch this video|listen to this podcast|dig this|learn more here|over at this website|this hyperlink|top article|I thought about this|read more here|check out the post right here|click this link now|like this|see it here|take a look at the site here|view it|view it now|they said|love it|like it|are speaking|will speak|try this|try what he says|try what she says|in the know|knowing it|speaking of|talking to|explanation|understanding|read the full info here|about his|made a post|describes it|talks about it|informative post|special info|secret info";

// DO NOT CHANGE THE BELOW UNLESS YOU WANT TO CHANGE THE PERCENTAGES OF YOUR LINK BUILDING OR KNOW WHAT YOU'RE DOING

$percentage['exact'] = 33;
$percentage['partial'] = 46;
$percentage['generic'] = 20;
$percentage['rawurls'] = 33;

// THE ABOVE SHOULD ADD UP TO 100 PREFERABLY

// Do not edit below this line

if($_GET['keywords'])
{
    $maxKws = (int) $_GET['keywords'];
}

$total = array_sum($percentage);

$targetKws = explode("|", $yourTargetKws);
$partialKws = explode("|", $yourPartialKws);
$genericKws = explode("|", $genericAnchors);
$urlKws = array ("http://".$yourWebsiteUrl, "http://www.".$yourWebsiteUrl, "http://".$yourWebsiteUrl."/", "http://www.".$yourWebsiteUrl."/", $yourWebsiteUrl);

for($i=0; $i<$maxKws; $i++)
{
    shuffle($targetKws);
    shuffle($partialKws);
    shuffle($genericKws);
    shuffle($urlKws);
    $randNo = mt_rand(0,$total);
    switch(true)
    {
        case $randNo < $percentage['exact']:
            echo $targetKws[array_rand($targetKws,1)];
        break;
        case $randNo < ($percentage['exact'] + $percentage['partial']):
            echo $partialKws[array_rand($partialKws,1)];
        break;
        case $randNo < ($percentage['exact'] + $percentage['partial'] + $percentage['generic']):
            echo $genericKws[array_rand($genericKws,1)];
        break;
        default:
            echo $urlKws[array_rand($urlKws,1)];
        break;
    }
    echo $separator;
}
?>


Enjoy!
 
Last edited:
Any chance to improve this wonderful script for a some kind of internal cross-linker for site (script should generate <a href> site-wide links using those generic anchors) ? I can pay some fee for work... If there is someone who can do it PM me please, or skype: wn_d4k

Thanks!
 
Last edited:
love how you put php script instead of just going to paste a list
 
Great resource.Thanks added :-)
You may have your own list but this is a good reference if you do not know what to have for a generic anchor for future link building jobs:

Click Here
Clicking Here
Go Here
Going Here
Read This
Read More
Find Out More
Discover More
Learn More
Read More Here
Discover More Here
Learn More Here
Click This Link
Visit This Link
Homepage
Home Page
Visit Website
Website
Web Site
Get More Info
Get More Information
This Site
More Info
Check This Out
Look At This
Full Article
Full Report
Read Full Article
Read Full Report
Get the facts
Related Site
Recommended Reading
Recommended Site
YOURURL.com
Visit Your URL
Check Out Your URL
Your Domain Name
Source
article source
click for source
link
more
Additional Info
Continue Reading
Continue
Continued
More Help
Resources
Extra resources
Bonuses
More Bonuses
More hints
helpful resources
Our site
our website
More about the author
helpful hints
more helpful hints
next page
additional reading



Spintax:


{Click Here|Clicking Here|Go Here|Going Here|Read This|Read More|Find Out More|Discover More|Learn More|Read More Here|Discover More Here|Learn More Here|Click This Link|visit this link|homepage|Home Page|Visit Website|website|web site|get more info|Get More Information|This Site|More Info|check this out|Look At This|Full Article|Full Report|Read Full Article|Get the Facts|related site|Recommended Reading|Recommended Site|source|article source|click for source|link|more|additional info|continue reading|continue|Continued|More Help|resources|extra resources|Bonuses|More Bonuses|More hints|helpful resources|next page}

More spintax

Click {Here|In this article|At this website|On this page|On this site|On this website}|Clicking Here|Go {Here|At this site|Now}|Going {Here|In this article|At this website|Listed here|On this page|On this site}|Read {This|This method}|Read {More|Much more|A lot more|Far more|Even more|Alot more|A great deal more|Significantly more}|Find Out More|Discover {More|A lot more|Additional|Alot more|Even more}|Learn {More|A lot more|Additional|Alot more|Even more|A great deal more}|Read More {Here|In this article|At this website|Listed here|On this page}|Discover {More|A lot more|Additional|Alot more|Even more|A great deal more} Here|Learn {More|A lot more|Additional|Alot more|Even more|A great deal more} Here|Click {This|That} Link|visit this {link|hyperlink|website link|web page link|weblink|backlink|website}|{homepage|home page|home-page|website|web site|webpage|web page|main page|internet site}|Home Page|Visit Website|website|web site|get more info|Get More {Information|Info|Details|Data|Facts|Information and facts|Material|Advice|Tips|Knowledge|Specifics|Imp ortant information}|This {Site|Website|Web site|Internet site|Web page|Web-site|Webpage|Blog|Internet page|Resource site}|More {Info|Data|Information|Details|Facts|Information and facts|Advice|Tips|Material}|check this out|Look {At This|Around This}|Full {Article|Post|Write-up|Content|Document|Posting|Report|Guide|Piece of writing}|Full {Report|Document|}

For those that are more PHP minded, I put together this script. Comments tell you how to configure it. Generates a list of links, so e.g. if you need 1000 links for a project and you want them to be natural, just change maxKws at the top to 1000, chuck in all your exact match kws and partial match kws, enter the url (without the http://www.) and load up the page.

You can override the number of kws setting by adding ?keywords=15 or ?keywords=1000 or whatever number of keywords you want to the URL.

Just c&p the script into a file on your server (preferably hidden from public access...)

PHP:
 <?php
$maxKws = 10; // Number of kws you want to generate, over-written by adding keywords= to the URL, so e.g. anchor.php?keywords=15 would over-ride whatever you set here, this is a default
$separator = "<br />"; // This determines what will separate the printed KW list, default is a line break (<br /> tag) but you may want to use | or , etc instead
$yourTargetKws = "kw1|kw2|kw3|kw4|kw5"; // put a | between each keyword you are targetting for your main anchors
$yourPartialKws = "partial kw1|kw1 partial|partial kw2|kw2 partial|etc"; // Your partial match kw's, in same format as above, so e.g. if your exact match is dog snuggies, put stuff like best dog snuggies, top snuggies, awesome dog stuff, i love snuggies
$yourWebsiteUrl = "yoursite.com"; // your domain excluding http:// and www. .. if targetting a specific page then e.g. yoursite.com/page, do not include the trailing slash
// Below are generic anchors, only change if you know what you're doing.. Good additions are your website's name, etc..
$genericAnchors = "here|click here|visit the website|visit website|website|link|visit site|read more|source|visit|home page|more...|site|active|more|home|view website|web site|homepage||this|via|official website|official site|go to website|(visit site)|visit homepage|company website|url|web|here.|this link|online|read more...|more..|yes|view publisher site||view site...|[link]|review||go!!|internet|how much is yours worth?|u rl|visite site|go|click|click here.|other|this site|moved here|blog|more...|more info|address|site web||the|3|.. [read more]|view|webpage|no title|this website|visit the site|anonymous|web link|clicking here|reference|visit this page|1|learn more|my company|visit our website|website 
link|sites|continue|image source|read|their website|visit their website|news|see here|original site|[source]|go here|great site|visit here|best site|resource|check this out|websites|click here!|2|us|continue reading this..|visit this site|to learn more|john|front page|download|hyperlink|twitter|(source)|main page|more information|webblog|read here|see page|read this|this one|my website|blog url|(visit)|site internet|browse|external link|check it out|redirected|site oficial|[read]|click this|this post|he said|she said|do you agree|weblink|right here|see|I was reading this|he has a good point|great post to read|over here|read what he said|look what I found|my latest blog post|a fantastic read|watch this video|listen to this podcast|dig this|learn more here|over at this website|this hyperlink|top article|I thought about this|read more here|check out the post right here|click this link now|like this|see it here|take a look at the site here|view it|view it now|they said|love it|like it|are speaking|will speak|try this|try what he says|try what she says|in the know|knowing it|speaking of|talking to|explanation|understanding|read the full info here|about his|made a post|describes it|talks about it|informative post|special info|secret info";

// DO NOT CHANGE THE BELOW UNLESS YOU WANT TO CHANGE THE PERCENTAGES OF YOUR LINK BUILDING OR KNOW WHAT YOU'RE DOING

$percentage['exact'] = 33;
$percentage['partial'] = 46;
$percentage['generic'] = 20;
$percentage['rawurls'] = 33;

// THE ABOVE SHOULD ADD UP TO 100 PREFERABLY

// Do not edit below this line

if($_GET['keywords'])
{
    $maxKws = (int) $_GET['keywords'];
}

$total = array_sum($percentage);

$targetKws = explode("|", $yourTargetKws);
$partialKws = explode("|", $yourPartialKws);
$genericKws = explode("|", $genericAnchors);
$urlKws = array ("http://".$yourWebsiteUrl, "http://www.".$yourWebsiteUrl, "http://".$yourWebsiteUrl."/", "http://www.".$yourWebsiteUrl."/", $yourWebsiteUrl);

for($i=0; $i<$maxKws; $i++)
{
    shuffle($targetKws);
    shuffle($partialKws);
    shuffle($genericKws);
    shuffle($urlKws);
    $randNo = mt_rand(0,$total);
    switch(true)
    {
        case $randNo < $percentage['exact']:
            echo $targetKws[array_rand($targetKws,1)];
        break;
        case $randNo < ($percentage['exact'] + $percentage['partial']):
            echo $partialKws[array_rand($partialKws,1)];
        break;
        case $randNo < ($percentage['exact'] + $percentage['partial'] + $percentage['generic']):
            echo $genericKws[array_rand($genericKws,1)];
        break;
        default:
            echo $urlKws[array_rand($urlKws,1)];
        break;
    }
    echo $separator;
}
?>


Enjoy!
 
You shouldn't worry about the percentage of your anchor links/non-anchor links, as long as your building a variety of different anchor texts, you should be fine. The objective is make it look like your link building is natural.
 
Back
Top