It appears Google has somehow managed to crawl and index the /user/password page (according to Google Search Console) - is it possible to set it to "noindex" (without using Node noindex)?
Try adding to your Views page /hirek Contextual filter "Global: Null".
And use a Canonical URL for all pages, which will help eliminate duplicate content for search engines.
It turned out that this is not a “term”, but a “page”. Ok.
If this is a content type like “News”, it is logical to use the pattern
"news/[node:title]"
where "news" is a list of all...
@izmeez, not to my knowledge.
I just now searched and found a newly released BookMadeSimple module that might make that possible. I'll try it in a sandbox and report back.
Comments
I`m use JS:
var path = window.location.pathname.substring(1);
var noindex = ['user','search'];
noindex.forEach(el => {
if (path.indexOf(el) > -1) {
setNoindex();
return;
}
});
function setNoindex() {
var meta = document.createElement('meta');
meta.name = 'robots';
meta.setAttribute('content', 'noindex');
document.getElementsByTagName('head')[0].appendChild(meta);
}