War Room

Go Back   WarriorForum - Internet Marketing Forums > Warrior Support Forums > Website Design

Featured Warrior Special Offer...
"Members Of The *War Room* Discover Secrets To Immediate Success!"
Reply
 
LinkBack Thread Tools
Old 10-07-2009, 12:51 AM   #1
HyperActive Warrior
War Room Member
 
Join Date: Jan 2009
Location: Melbourne, Australia
Posts: 446
Thanks: 239
Thanked 33 Times in 25 Posts
Default html Redirect Link

Hey guys,

I've been using a basic html re-direct to cloak my affiliate links. It looks like this;

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1" />
<meta http-equiv="Refresh"
content="1; URL=AFF LINK" target="_blank">
<title>TITLE</title>
</head>
<body>
<br />
</body>
</html>
I've just been reading that I should be making these links nofollow because Google is beginning to penalize them if you don't.

Am I right that I just have to add
Code:
<meta name="robots" content="nofollow" />
to do this?

If yes, is this the place where I'm supposed to put it?

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1" />
<meta http-equiv="Refresh"
content="1; URL=AFF LINK" target="_blank">
<title>TITLE</title>
<meta name="robots" content="nofollow" />
</head>
<body>
<br />
</body>
</html>
Is that in the right spot or do I need to put it somewhere else?

Thanks in advance!
Pat Jackson is online now  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-07-2009, 04:08 AM   #2
Ultimate War Machine
War Room Member
 
TheLimeDesign's Avatar
 
Join Date: Oct 2009
Posts: 53
Thanks: 2
Thanked 12 Times in 12 Posts
Contact Info
Send a message via MSN to TheLimeDesign Send a message via Yahoo to TheLimeDesign
Default Re: html Redirect Link

Yep, that's the place you put them (anywhere within the <head> tag)

Alternatively, you can also centralize it in your robot.txt files. Helps a lot if you have a huge number of pages.

TheLimeDesign Portfolio | TheLimeDesign Official Site
"Building Relationships. Not websites"

Last edited by TheLimeDesign; 10-07-2009 at 04:08 AM. Reason: extra tip
TheLimeDesign is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following User Says Thank You to TheLimeDesign For This Useful Post:
Old 10-07-2009, 04:49 AM   #3
HyperActive Warrior
War Room Member
 
Join Date: Jan 2009
Location: Melbourne, Australia
Posts: 446
Thanks: 239
Thanked 33 Times in 25 Posts
Default Re: html Redirect Link

Quote:
Originally Posted by TheLimeDesign View Post
Yep, that's the place you put them (anywhere within the <head> tag)

Alternatively, you can also centralize it in your robot.txt files. Helps a lot if you have a huge number of pages.
Yeah, there is quite a few pages so that would be better!

What do I need to put in my robots.txt?
Pat Jackson is online now  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-07-2009, 05:59 AM   #4
Ultimate War Machine
War Room Member
 
TheLimeDesign's Avatar
 
Join Date: Oct 2009
Posts: 53
Thanks: 2
Thanked 12 Times in 12 Posts
Contact Info
Send a message via MSN to TheLimeDesign Send a message via Yahoo to TheLimeDesign
Default Re: html Redirect Link

okay, this is your basic robot.txt file content:

Code:
User-agent: *
Disallow: /examplefolder1/

User-Agent: Googlebot
Disallow: /examplefolder2/
Following the top code, everything within "examplefolder1" folder will NOT be indexed by ALL search engines, while the "examplefolder2" folder will NOT be indexed ONLY by Google.

This way, you can sort out which FOLDERS you want to index and which you want to leave out. This covers the WHOLE FOLDER. To customize this further, you can use the following:


To block the entire site, use a forward slash.
Code:
Disallow: /
To block a directory and everything in it, follow the directory name with a forward slash.
Code:
Disallow: /junk-directory/
To block a page, list the page.
Code:
Disallow: /private_file.html
To remove a specific image from Google Images, add the following:
Code:
User-agent: Googlebot-Image
Disallow: /images/dogs.jpg
To remove all images on your site from Google Images:
Code:
User-agent: Googlebot-Image
Disallow: /
To block files of a specific file type (for example, .gif), use the following:
Code:
User-agent: Googlebot
Disallow: /*.gif$
To prevent pages on your site from being crawled, while still displaying AdSense ads on those pages, disallow all bots other than Mediapartners-Google. This keeps the pages from appearing in search results, but allows the Mediapartners-Google robot to analyze the pages to determine the ads to show. The Mediapartners-Google robot doesn't share pages with the other Google user-agents. For example:
Code:
User-agent: *
Disallow: /

User-agent: Mediapartners-Google
Allow: /
For multiple items,

Code:
User-agent: *
Disallow: /file1.html
Disallow: /page4.html

User-Agent: Googlebot
Disallow: /examplefolder2/
Disallow: /junk-page.html
Hope that helps

TheLimeDesign Portfolio | TheLimeDesign Official Site
"Building Relationships. Not websites"
TheLimeDesign is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following User Says Thank You to TheLimeDesign For This Useful Post:
Old 10-07-2009, 06:51 AM   #5
HyperActive Warrior
War Room Member
 
Join Date: Jan 2009
Location: Melbourne, Australia
Posts: 446
Thanks: 239
Thanked 33 Times in 25 Posts
Default Re: html Redirect Link

Quote:
Originally Posted by TheLimeDesign View Post
okay, this is your basic robot.txt file content:

Code:
User-agent: *
Disallow: /examplefolder1/

User-Agent: Googlebot
Disallow: /examplefolder2/
Following the top code, everything within "examplefolder1" folder will NOT be indexed by ALL search engines, while the "examplefolder2" folder will NOT be indexed ONLY by Google.

This way, you can sort out which FOLDERS you want to index and which you want to leave out. This covers the WHOLE FOLDER. To customize this further, you can use the following:
Thanks for that. noindex and nofollow aren't the same thing, though, are they?

All of the links I'm talking about are in a folder called "Recommends" so would the following set up;

Code:
User-agent: *
Disallow: /Recommends/
Stop Google from following the links or just stop them from indexing them? (Forgive me if it's the same thing)
Pat Jackson is online now  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10-07-2009, 07:42 AM   #6
Ultimate War Machine
War Room Member
 
TheLimeDesign's Avatar
 
Join Date: Oct 2009
Posts: 53
Thanks: 2
Thanked 12 Times in 12 Posts
Contact Info
Send a message via MSN to TheLimeDesign Send a message via Yahoo to TheLimeDesign
Default Re: html Redirect Link

Hey Pat,

I'm really sorry, I overlooked the post. If index is what you are looking for, then follow the post above I gave. You are right, nofollow and noindex are not the same. A page can be indexed and nofollowed at the same time and vice versa.

The main purpose of these are actually related to the indexing, ability of crawling and the PR of the page. Basically, nofollow could not be integrated into robots.txt. That said, you will have to insert the nofollow meta tag in the head section of all pages of yours (I hope you are using PHP).

To make it easier to understand,
noindex (meta) - disables indexing of the page, but your page will still be crawled and the PR will be affected
nofollow (meta) - does index your page still, but the links are NOT crawled and it does NOT contribute to your PR at all
robots.txt - This is the file the bot searches first before finding the pages. robots file will only send the URL of your pages to google and whether or not it should be processed further. It does not have any affect on the crawling of your pages but it does affect PR rate of your page.

Once again, sorry for the confusion. I hope I made it clearer this time.

Cheers~

TheLimeDesign Portfolio | TheLimeDesign Official Site
"Building Relationships. Not websites"
TheLimeDesign is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following User Says Thank You to TheLimeDesign For This Useful Post:
Reply

  WarriorForum - Internet Marketing Forums > Warrior Support Forums > Website Design

Tags
html, link, redirect

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 08:04 PM.