FEATURE: allow search engines to index tag pages. (#12248)

Previously, we blocked search engines in tag pages since they may get marked as a duplicate content.

* DEV: block tag inner pages from search engines crawling.
This commit is contained in:
Vinoth Kannan
2021-03-09 23:55:57 +05:30
committed by GitHub
parent 7435d55ea6
commit e3d8e828b8
3 changed files with 2 additions and 3 deletions

View File

@@ -29,7 +29,6 @@ describe TagsController do
tags = response.parsed_body["tags"]
expect(tags.length).to eq(1)
expect(tags[0]['text']).to eq("topic-test")
expect(response.headers['X-Robots-Tag']).to eq('noindex')
end
end