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
Hello Umbraco
I am having issues figuring out how to use the url rewrite module to rewrite my /umbraco page to another website.
We are doing flexible loadbalancing and want to redirect content creators from loadbalanced/umbraco to non loadbalancedsite/umbraco.
So far i made this rewrite but it isnt doing the trick, been searching abit on this topic but havent found anything usable.
<rewrite> <rules> <rule name="SpecificRedirect" stopProcessing="true" > <match url="http://localhost:56738/umbraco" /> <action type="Redirect" url="http://MYWEBSITE.COM/umbraco" /> </rule> </rules> </rewrite>
Am i doing something wrong here, maybe its the staticly typed names?
I figured it out i wasnt placing it in the correct web.server
<system.webServer> <rewrite xdt:Transform="Insert"> <rule name="SpecificRedirect" stopProcessing="true" > <match url="https://myotyhersite.net/umbraco" /> <action type="Redirect" url="http://mysite.net/umbraco" /> </rule> </rewrite>
https://our.umbraco.org/forum/umbraco-7/using-umbraco-7/72207-disabling-access-to-umbraco-backoffice
This explains what i did to make this happen
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Url rewrite of /umbraco
Hello Umbraco
I am having issues figuring out how to use the url rewrite module to rewrite my /umbraco page to another website.
We are doing flexible loadbalancing and want to redirect content creators from loadbalanced/umbraco to non loadbalancedsite/umbraco.
So far i made this rewrite but it isnt doing the trick, been searching abit on this topic but havent found anything usable.
Am i doing something wrong here, maybe its the staticly typed names?
I figured it out i wasnt placing it in the correct web.server
https://our.umbraco.org/forum/umbraco-7/using-umbraco-7/72207-disabling-access-to-umbraco-backoffice
This explains what i did to make this happen
is working on a reply...