0
0

Edit robots.txt

This commit is contained in:
Sergey Chebotar 2023-06-14 08:02:48 +03:00
parent a62845291a
commit fc5c75131c

View File

@ -13,8 +13,9 @@ public class RobotsTxtGenerator : IRobotsTxtGenerator
{
StringBuilder stringBuilder = new();
stringBuilder.AppendLine("user-agent: *");
stringBuilder.AppendLine("disallow: /freedom");
stringBuilder.AppendLine("disallow: /Account/");
stringBuilder.AppendLine("Disallow: /freedom");
stringBuilder.AppendLine("Disallow: /Account/");
stringBuilder.AppendLine("Disallow: /account/");
return stringBuilder.ToString();
}