akok Active member Dec 19, 2024 #1 After upgrading to version 2.3, Google started indexing pages like https://www.safezone.cc/misc/style-...t=1734428148,8fee46c7933a120677721b855fa0e709And this is just a page with an error, maybe it's worth adding a rule to such pages? <meta name="robots" content="noindex"> Upvote 3
After upgrading to version 2.3, Google started indexing pages like https://www.safezone.cc/misc/style-...t=1734428148,8fee46c7933a120677721b855fa0e709And this is just a page with an error, maybe it's worth adding a rule to such pages? <meta name="robots" content="noindex">
Chromaniac Well-known member Dec 19, 2024 #2 style_variation_chooser template on default theme does have <meta name="robots" content="noindex" /> at my end. though it does not seem to stop google from indexing these pages . you can check the source code here: https://xenforo.com/community/misc/style-variation
style_variation_chooser template on default theme does have <meta name="robots" content="noindex" /> at my end. though it does not seem to stop google from indexing these pages . you can check the source code here: https://xenforo.com/community/misc/style-variation
akok Active member Dec 29, 2024 #3 Yes, but Google indexes pages with 400 errors that don't have noindex.
akok Active member Dec 29, 2024 #4 For now I have settled on the decision to prohibit indexing of pages with errors Code: <xf:if is="$template == 'error'"> <meta name="robots" content="noindex" /> </xf:if>
For now I have settled on the decision to prohibit indexing of pages with errors Code: <xf:if is="$template == 'error'"> <meta name="robots" content="noindex" /> </xf:if>