Hi,
I want to add the line "Disallow: /relatude/" in my robots.txt-file.
For /waf/ and /edit/, I have the following lines in my robots.ashx-file:
sb.AppendLine("Disallow: " + WAFContext.UrlFromHostToApp + WAFContext.UrlFromAppToFolderWAF);
sb.AppendLine("Disallow: " + WAFContext.UrlFromHostToApp + WAFContext.UrlFromAppToFolderVirtualEdit);
I have tried to find the "relatude"-keyword among the most similar properties in WAFContext without luck.
So my question is, does such a keyword exist (yet)? Or do I simply have to write this for now:
sb.AppendLine("Disallow: /relatude/");
Thanks for any help,
Anna