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
Is there a way to protect published page using umbraco login ?
I dont need any fancy login page, my objective is to grant access from umbraco UI and gives access to a published page.
Hi Tajamal,
What you could consider is to use IP restriction on your page, by using the IIS.
Try to see this documentation https://technet.microsoft.com/en-us/library/cc730889.aspx
Hope this helps,
/Dennis
If it´s only the Umbraco backoffice you want to restrict then you can use a rewrite rule like this
<rewrite> <rules> <!-- Restrict access to Umbraco --> <rule name="Restrict access" stopProcessing="true"> <match url="umbraco(?!/Surface/)(?!/Api/)(?!/api/)(?!/webservices/)" /> <conditions logicalGrouping="MatchAny" trackAllCaptures="false"> <add input="{HTTP_HOST}" pattern="(([^.]+)\.)?admin.example\.com" negate="true" /> </conditions> <action type="Redirect" url="/not-found/" appendQueryString="false" /> </rule> </rules> </rewrite>
I had a authentication filter already and added a rule for the page in there and it work.
The rewrite rule looks good too and I will try that soon.
Thanks
<add input="http://www.mydomain.com" pattern="(([^.]+)\.)?about/my-admin-page" negate="true" />
do I need any back slash in the pattern (before about) or does it look good. or I could add that in the end of the my host.
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
Public page protection
Is there a way to protect published page using umbraco login ?
I dont need any fancy login page, my objective is to grant access from umbraco UI and gives access to a published page.
Hi Tajamal,
What you could consider is to use IP restriction on your page, by using the IIS.
Try to see this documentation https://technet.microsoft.com/en-us/library/cc730889.aspx
Hope this helps,
/Dennis
If it´s only the Umbraco backoffice you want to restrict then you can use a rewrite rule like this
Hope this helps,
/Dennis
I had a authentication filter already and added a rule for the page in there and it work.
The rewrite rule looks good too and I will try that soon.
Thanks
do I need any back slash in the pattern (before about) or does it look good. or I could add that in the end of the my host.
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.