Using 13 can we change the /umbraco url to somethi...
# help-with-umbraco
j
Using 13 can we change the /umbraco url to something else?
j
It looks like this is no longer configurable after V12 - https://github.com/umbraco/Umbraco-CMS/blob/contrib/src/Umbraco.Core/Configuration/Models/GlobalSettings.cs
Copy code
/// <summary>
    ///     Gets or sets a value for the Umbraco back-office path.
    /// </summary>
    public string UmbracoPath
    {
        get => Constants.System.DefaultUmbracoPath;
        [Obsolete($"{nameof(UmbracoPath)} is no longer configurable, this property setter is scheduled for removal in V12.")]
        // NOTE: When removing this, also clean up the hardcoded removal of UmbracoPath in Umbraco.JsonSchema
        set { }
    }
a
Correct! This is no longer an configurable option
m
“Why is no one discussing this BackOffice Path? Is there any way to change it?”
6 Views