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
Hi.
Is there a way to Split a version 10 site so that you have the main part of the site on
Example: https://www.mysite.com
and the Admin /Umbraco area on another URL
https://www.mysite.admin.com/
Hello,
You could add some rewrite rules which redirect
https://www.mysite.com/umbraco
To
https://www.mysite.admin.com/umbraco
And other rewrite rules which do the reverse. For example this rewrite rule would redirect all /umbraco requests to your admin domain. (Don't quote me on this rewrite rule I'm doing it from memory)
<rule name="RedirectToAdmin" stopProcessing="true"> <match url="^(?:umbraco)(?:/|$)" /> <conditions> <add input="{HTTP_HOST}" pattern="^www\.mysite\.admin\.com$" negate="true" /> </conditions> <action type="Redirect" redirectType="Permanent" url="https://www.mysite.admin.com/umbraco" /> </rule>
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Is there a way to Split the back office off on to it own URL
Hi.
Is there a way to Split a version 10 site so that you have the main part of the site on
Example: https://www.mysite.com
and the Admin /Umbraco area on another URL
https://www.mysite.admin.com/
Hello,
You could add some rewrite rules which redirect
To
And other rewrite rules which do the reverse. For example this rewrite rule would redirect all /umbraco requests to your admin domain. (Don't quote me on this rewrite rule I'm doing it from memory)
is working on a reply...