Forum Moderators: open

Message Too Old, No Replies

Most effective way to link without carrying value

         

DXL

10:56 pm on Sep 10, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I have a niche site which is completely in flash and links to a variety of client sites, the client sites all link back. It occurred to me that because the links are flash-driven, Y and G won't see that these are reciprocal links (and the value for my inbounds are possibly higher as a result of them appearing as one-way).

I'm converting the site totally to html, I still want links to client sites, only I want to code them so that Yahoo and Google won't count them. There are several methods of doing this, which would probably be the most effective for my specific need?

tedster

4:26 am on Sep 11, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



If you use the rel="nofollow" attribute, the major search engines may follow the links, but they won't pass along any "backlink influence" such as Page Rank.

If you use javascript document.write(), it is less likely that the links will be followed. They still might if the url is an unambiguous text string rather than being "assembled" from pieces -- but it won't be seen as a link.

Or, you could make the article into html, but present the links as Flash.

I would just link with straight out html and not play around with it -- that's just me. I operate mostly from an abundance mindset. What goes around does seem to come around, you know?

DXL

5:16 am on Sep 11, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



If you use javascript document.write(), it is less likely that the links will be followed. They still might if the url is an unambiguous text string rather than being "assembled" from pieces -- but it won't be seen as a link.

Can you recommend a good tutorial for writing a javascript text link that will create a link not likely to be followed?

tedster

8:59 am on Sep 11, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You can define parts of the link as variables (break it up anywhere you want to) and then concatenate those variables inside your document.write(). Define the pieces in an external .js file for even more "secrecy" -- and also to keep the page weight light if you have lots of links.

It's essentially the same method you can use to "hide" email addresses from automated email harvesters [webmasterworld.com], except that some email harvesters are getting quite sophisticated these days. I would also choose not-so-obvious names for the variables.

kaled

11:44 am on Sep 11, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Outbound links to respectable and relevant sites may help your SERPS.

Kaled.

DXL

12:13 pm on Sep 11, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Outbound links to respectable and relevant sites may help your SERPS.

I'm already #1 in all major search engines for my target keywords for that site, though. So my concern at this point isn't what's going to improve my position, its making sure that my position doesn't get worse as the result of Google and Yahoo devaluing inbound links.

I'm not familiar with writing in Javascript, so I guess I'll look up a few resource sites to determine how exactly I should code the links.

kaled

5:29 pm on Sep 11, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



To create links using javascript...

<script type="text/javascript">
// this should be placed in the <head>
function createLink(text,url1,url2){
document.write('<a href="' + url1 + url2 +'">' + text + '<\/a>');
</script>
}

<script type="text/javascript">
// this should be placed in the <body>
createLink('GOOGLE','http://www.go','ogle.com');
createLink('YAHOO' ,'http://www.ya','hoo.com');
</script>

Urls are split to ensure robots don't follow them.

Kaled.

DXL

7:51 pm on Sep 11, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Thanks Kaled, looks just like what I need, I'll try that out.

zaytran

12:05 pm on Sep 13, 2006 (gmt 0)

10+ Year Member



I have the same problem with image links in an HTML site. How is the no follow implemented?

<a href="http://www.example.com/"><img border="0" src="http://www.example.com./Images_II/logo.gif" alt="Alt Text Example" vspace="10" width="256" height="38">

tedster

3:16 pm on Sep 13, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



<a href="http://www.example.com/" rel="nofollow">

zaytran

1:32 am on Sep 15, 2006 (gmt 0)

10+ Year Member



Thank You!