Mobile app version of vmapp.org
Login or Join
Pope3001725

: Should I use nodindex, follow or rel canonical? I have a site that lists offers, promotions from other websites. Since the offers expire rather quickly I don't save them into my database. I

@Pope3001725

Posted in: #CanonicalUrl #Noindex #Seo

I have a site that lists offers, promotions from other websites.

Since the offers expire rather quickly I don't save them into my database. I see no point in having a page from 2010 about 30% discount on a certain brand of shoes which isn't availabe anymore.


A visitor enters my website;
He clicks on the "shoes" category: www.mysite.com/shoes/

Here he sees 20 available promotions from different online stores.


He clicks on a promotion and gets to a page like this: www.mysite.com/shoes/promotions/prada

Questions:

I use the template promotions.php and list all the promotions.

/promotions/prada/
/promotions/otherbrand/
....

What I do is use "noindex, follow" for the links.

Is that a good idea? Or should I use rel="canonical" for the promotion page?

How do you advise me to handle this from the SEO point of view?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Pope3001725

1 Comments

Sorted by latest first Latest Oldest Best

 

@Ann8826881

Or should I use rel="canonical" for the promotion page?


No, only use canonical for pages with (almost) identical content. Your promotion list page and an individual promotion are clearly different pages.


What I do is use "noindex, follow" for the links.
Is that a good idea?


I think you shouldn't disallow the indexing. Search engines can be very fast, some web pages are indexed only minutes after they were published (thanks to feeds). I think your content is valuable for users of search engines: many search engines allow their users to limit results to only pages that were published/indexed x hours ago.

So if you really don't want to keep old promotions online, you should still allow search engines to index the pages. After you delete them, you should set the HTTP headers to 404 (deleted or was never existent) or better 410 (Gone = deleted and won't come back). But you should use "unique" URLs for that, e.g. by including the publication date: example.com/shoes/promotions/2012-10-06-otherbrand/.

Or don't give each individual promotion an own page, but list all promotions on the brand page (example.com/shoes/promotions/otherbrand/), which never gets deleted. If there are currently no promotions for "shoes" by "otherbrand", you would simply tell this to your visitors on that page.



I think the best structure would be the following:


example.com/shoes/promotions: a list of links to all brands (you could include the count of current promotions in parentheses, e.g.: "Otherbrand (1)")
example.com/shoes/promotions/otherbrand: a list of links to all current promotions for "otherbrand"
example.com/shoes/promotions/otherbrand/2012-10-06_discount-and-free-shipping: an individual promotion (could be deleted when it's over)

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme