Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

RobotsTxtDefaults.cs

namespace Nop.Core.Domain.Security;

/// 
/// Represents default values related to robots.txt
/// 
public partial class RobotsTxtDefaults
{
    /// 
    /// Gets a name of custom robots file
    /// 
    public static string RobotsFileName => "robots.txt";

    /// 
    /// Gets a name of custom robots file
    /// 
    public static string RobotsCustomFileName => "robots.custom.txt";

    /// 
    /// Gets a name of robots additions file
    /// 
    public static string RobotsAdditionsFileName => "robots.additions.txt";
}