XF 2.1 Full tags noindex?

Agentos

Active member
The tag page is set by default by xenforo to noindex, but google indexes tag pages anyway. How to set noindex for tags correctly so that Google doesn't index them?
 
Important! For the noindex directive to be effective, the page must not be blocked by a robots.txt file. If the page is blocked by a robots.txt file, the crawler will never see the noindex directive, and the page can still appear in search results, for example if other pages link to it.
Using the robots meta tag
The robots meta tag lets you utilize a granular, page-specific approach to controlling how an individual page should be indexed and served to users in Google Search results. Place the robots meta tag in the <head> section of a given page, like this:
Code:
<!DOCTYPE html>
<html><head>
[B]<meta name="robots" content="noindex" />[/B]
 
Top Bottom