Mobile app version of vmapp.org
Login or Join
Pierce454

: Having an iframe of which inside the page has a noindex nofollow tag would it affect the rankings of the page having the iframe? Is it cloaking? We have a website with video content delivered

@Pierce454

Posted in: #DuplicateContent #Iframe #Nofollow #Noindex

We have a website with video content delivered from a video studio and hosted on their site since we don't want to load our server with it. The content we are embedding is payed for and we don't to rank the videos (since they are hosted elsewhere and we embed them) but to rank our posts with the videos in them.

The pages in the website aren't just with the embedded videos, it has a brief review of the video inside it also.

Explanation of the concept and construction:

Site example.com has an iframe:

<iframe src="http://www.example.com/steve.html"></iframe>


Inside the file steve.html which is under the same domain example.com

there are the meta tags:

<META NAME="ROBOTS" CONTENT="NOINDEX">
<META NAME="ROBOTS" CONTENT="NOFOLLOW">


And in the body there is another iframe video embed code from the external website.

Now my questions are:

Is this considered cloaking?

Would we be better off without the nofollow/noindex as now Google cant see the iframed content and where the video iframe is in Google eyes appears a big nothing?

Any suggestions?

Edit to clarify it a bit here:

We have a post
Example.com/review
Inside it there is an iframe (example.com/iframespace with no follow/noindex)
inside this iframe (example.com/iframespace) there is another iframe of the video embed code.

Would the iframe with the nofollow/noindex affect the post example.com/review which contains the iframe?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Pierce454

2 Comments

Sorted by latest first Latest Oldest Best

 

@Nickens628

A while back, I wrote an article about cloaking on the Internet.
snapwebsites.com/journal/2012/06/snap-seo-what-cloaking-and-why-search-engines-do-not-it
Maybe that will shed some light about the technique and what search engines really do not like.

Note that the fact that a page is marked as NOINDEX does not mean search engines won't access the page, far from it. How do you think the spider would know that the page has a NOINDEX in its <head> tag? So in other words that page is perfectly visible and recorded in Google's system. Only it won't appear in the index because you asked it not to do so.

Cloaking happens, and that's what search engines do not like, when you return completely different data to Google and to a User (as w3d told you in a comment.) So if I go to your website page:

example.com/review


And you detect I am a Robot from Google, you actually show the contents of example.com/happy-robot.

If you do not detect that I am a Robot, you show me the contents of example.com/this-instead.

That is definitively cloaking (assuming that the contents of /happy-robot and /this-instead are different.) For Google, it is difficult to determine that such happens without some human intervention, but I'm sure it quickly detects such problems.

In regard to IFRAMEs and cloaking, they do similar things as the content of the IFRAME could show X to the Google robots and Y to a user. So they will check them too. Again, if X and Y are not the same thing, then cloaking it is. In what you describe, you show the same thing to both users and Google so again you're good.

Note that the NOFOLLOW, just like the NOINDEX, means that juice is not passed, not that the search engines won't follow the link (and count it, etc.) So the IFRAME of the video inside your local IFRAME will be detected and checked out in time.

The one thing that really prevents Google robots from reading a page is the robots.txt file. In that case, they do not access the page (mainly to save resources, although they may have undisclosed systems that check those pages "secretly" to verify a few things... but legally they probably have to have humans do it for them.)

10% popularity Vote Up Vote Down


 

@Megan663

No, the NINDEX, NOFOLLOW on the embedded iframe will not effect the page it is displaying on. As they are neither on the actual page, nor within the <head> section of the pages source code.

I know this from experience as I have used this technique before where I had content that must appear on the page, but was duplicate content, so I didn't want search engines to pick up the content as appearing in the page.

Moz.com also recently recommended this as an option when combating duplicate content: Handling User-Generated & Manufacturer-Required Duplicate Content Across Large Numbers of URL

However your robots. meta tags are incorrect, they should be withing a single tag:

<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme