spacecodeur
spacecodeur

Reputation: 2406

Web indexing and duplicate content about multiple url for one website

I have one website and several url :

All of these links go to the same website. The website have a global skeleton like this :

<body>
  <p>name : <?php echo $var1; ?> </p>
  <p>surname : <?php echo $var2; ?> </p>
  <p>age : <?php echo $var3; ?> </p> 
</body>

My question is about the web indexing. The skeleton still the same whatever the url used. But ! the skeleton have some variables, these variables change depending the base url used.

So, my website will detected as a 'duplicate content' or not for searches bots ?

Thank you =)

Upvotes: 0

Views: 220

Answers (1)

Max
Max

Reputation: 866

Short answer: Yes, Google will think your web-pages are the same if you only have a couple of rows of text that are different. Google will display only one of the websites in the search results.

Google tries hard to index and show pages with distinct information. This filtering means, for instance, that if your site has a "regular" and "printer" version of each article, and neither of these is blocked with a noindex meta tag, we'll choose one of them to list.

In the rare cases in which Google perceives that duplicate content may be shown with intent to manipulate our rankings and deceive our users, we'll also make appropriate adjustments in the indexing and ranking of the sites involved.

As a result, the ranking of the site may suffer, or the site might be removed entirely from the Google index, in which case it will no longer appear in search results. More info.

Upvotes: 2

Related Questions