Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
As my previous question was probably to complex I'll try it with a different approach.
How can I set up Umbraco so that the backoffice loads on the main page, therefore the path /?
/
I know that I can change the path with the app setting umbracoPath, but that won't work for ~/
umbracoPath
~/
Hi,
I would probably go for 301 rewrite rule to move root to /umbraco.
Hope that helps. If you need rewrite something like below will work. (I have not tried)
<rule name="Root Hit Redirect" stopProcessing="true"> <match url="^$" /> <action type="Redirect" url="/umbraco/" /> </rule>
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Use backoffice at path / instead of /umbraco
As my previous question was probably to complex I'll try it with a different approach.
How can I set up Umbraco so that the backoffice loads on the main page, therefore the path
/
?I know that I can change the path with the app setting
umbracoPath
, but that won't work for~/
Hi,
I would probably go for 301 rewrite rule to move root to /umbraco.
Hope that helps. If you need rewrite something like below will work. (I have not tried)
is working on a reply...