I am trying to change the default admin UI URL used in Umbraco to a custom URL. The default URL is simply /umbraco
, for example:
http://mywebsite.com/umbraco
As an example, I would like the admin UI URL to be:
http://mywebsite.com/asdf
So far, I have tried changing the umbracoPath app setting in the Web.Config:
<add key="umbracoPath" value="~/asdf" />
And renaming the 'Umbraco' folder to 'asdf' in my Visual Studio solution.
This gives some success, when navigating to /asdf
:
However, the default admin UI page is blank. If I navigate to /asdf#/umbraco
, then the expected default page is loaded:
I have obviously missed something, but cannot find what/where - how do I change the default admin UI URL to /asdf?