<meta content='noindex' name='robots'/>
<meta content='noarchive' name='robots'/>
<meta content='nofollow' name='robots'/>
On pages <head>
, How to show meta tags above only on permalink pages that have a question mark symbol (?).
Example permalink:
http://mydomain/blablahhblaa
(will appear on this permalink page<head>
)http://mydomain/blablahh?bla
(will not Appear on this permalink page<head>
)
INFO 1: Platform: Blogger/Blogspot
INFO 2:By Default on Blogspot blog platform, to show/hide content in certain permalink, just use code below:
<b:if cond='data:blog.pageType == "http://THEPERMALINK.COM/BLABLA"'>
Content at this space will appear at this permalink http://THEPERMALINK.COM/BLABLA
<b:else/>
Content at this space will appear at all pages exclude this permalink http://THEPERMALINK.COM/BLABLA
</b:if>
INFO 3: And to get current URL in Blogspot blog platform, is using this code: data:blog.url
or <data:blog.url/>
The point here: i want to try do something like below Shortcut_For_Any_Permalink_Have_a_Question_Mark
<b:if cond='data:blog.url == "Shortcut_For_Any_Permalink_Have_a_Question_Mark"'>
<meta content='noindex' name='robots'/>
<meta content='noarchive' name='robots'/>
<meta content='nofollow' name='robots'/>
</b:if>
Thanks a lot.