Deprecated: pathinfo(): Passing null to parameter #1 ($path) of type string is deprecated in /html/typo3.andreas-huber.at/wp-content/plugins/crayon-syntax-highlighter/crayon_langs.class.php on line 84
Hat man in einer Typo3-Installation mehrere Domains laufen und publiziert News (via tt_news) auf mehreren Domains dann läuft man Gefahr, ein Duplicate-Content Problem bei Google zu bekommen.
Man kann mit folgendem Typoscript-Code bei der News ein Canonical Tag hinterlegen, und verweist somit auf eine „Haupt-Url“ der News:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
page.headerData.40 = TEXT page.headerData.40 { typolink.parameter.data = TSFE:id typolink.forceAbsoluteUrl = 1 typolink.returnLast = url typolink.additionalParams.cObject = COA typolink.additionalParams.cObject { 10 = TEXT 10.dataWrap = &tx_ttnews[tt_news]={GP:tx_ttnews|tt_news} 10.if.isTrue.data = GP:tx_ttnews|tt_news 20 = TEXT 20.dataWrap = &tx_ttnews[cat]={GP:tx_ttnews|cat} 20.if.isTrue.data = GP:tx_ttnews|cat } wrap = <link href="|" rel="canonical"> } |