You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"robots", stores the sent Robots-X-Tag HTTP headers. Is there a way to simply remove the spaces from these? Right now it shows noindex, follow and noindex,follow as different entities.
See screenshot: http://uploads.yoast.nl/Kibana_3_-_Googlebot_19471DBC.png
The text was updated successfully, but these errors were encountered:
Which would result in something like (an array may be more beneficial than a primitive string, although indexing-wise they can be fairly similar)...
{
"robots": [
"noindex",
"follow"
]
}
If a string is preferred (may have further issues on noindex, follow vs follow, noindex), should probably do something like this which will ensure there's always a space...
"robots", stores the sent Robots-X-Tag HTTP headers. Is there a way to simply remove the spaces from these? Right now it shows
noindex, follow
andnoindex,follow
as different entities.See screenshot: http://uploads.yoast.nl/Kibana_3_-_Googlebot_19471DBC.png
The text was updated successfully, but these errors were encountered: