How do I scrap the standard page which comes up when I choose to go to live site?
Hi,
When I choose "go to live site" in Sitefinity 4.0's backend, it shows the default page saying the site is under construction, come back soon. How can I scrap this so that it shows the page (Default) which I have setup myself?
Thanks
Hello,
Do you create any new pages in the back end of sitefinity? The page you set up as default is a physical one or a sitefinity page?
In sitefinity, you can set a page as home page. When doing this, the page "under construction" will not be loaded.
To do this, select the "actions" menu for one page in pages list and click "Set as home page".
Hope this help you?
Jocelyn
I have my default page configured with backend, page available only for authorized users
I have login page for anonymous users
Default redirects works well for authorized users but when user signed out and user trying to open default web page, he get Under Construction page loaded
Is any way to redirect user to login page in that case ?
Solved by adding authentication details in web.config
<authentication mode="Forms">
<forms path="/" loginUrl="~/login/" protection="All" timeout="30"></forms>
</authentication>
<authorization>
<deny users="?" />
</authorization>