In the options of every Flexicontent Type, an option appears called "Canonical Tag: Yes/No"
This option will add inside the html header of your pages the code of a rel canonical tag:
Code:
<head>
...
<link href="http://yoursitedomain//..." rel="canonical" />
...
</head>
Many pages can be access by different URLs, but in fact display (more or less) the same content.
Example:
http: // www . phoneshop . eee/smartphone/3G
http: // www . phoneshop . eee/3G/smartphone
Also many dynamic pages may contain in the URL content unrelated variables, such as session-id or other user preferences, such as layout, theme, etc, but the content regardless of sessions and user preferences is the same.
A temporary redirect 302 or permanent 301 HTTP redirect is not appropriate. You don't want to move the user to a new URL, nor you want to declare the page as temporary or obsolete.
So how can the Search Engines, know that all these different URLs are the same page?
You do it with special html <link> tag that has the rel (canonical) attribute. The value of the rel attribute will be the "canonical" or "normal" URL of the page.
Search engines need to know this for reasons like not indexing the different URLs as different content thus splitting up your page ranks and also producing unwanted weaker search results (no real advantage to have more pages in Google if they rank much lower).
So this is a hint to the search engines and other tools, that despite the different URLs the displayed content is essential the same.
All versions of the page accessed by different URLs will have the same rel canonical tag.
Be careful not to do the mistake to insert such a tag and make your pages point to wrong URLs as this will de-index the pages having it from the search engine index, or even worse make all your site URLs rel canonical to your home page, as this will de-index all your site pages except your home, and also there is a small chance that Google will think that you are doing SPAM tricks.
Then again this is up to the algorithm of the search engine to decide what the search engine will do.
Regards