How do I scrap the standard page which comes up when I choos

Posted by Community Admin on 03-Aug-2018 18:55

How do I scrap the standard page which comes up when I choose to go to live site?

All Replies

Posted by Community Admin on 30-Jan-2011 00:00

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

Posted by Community Admin on 30-Jan-2011 00:00

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

Posted by Community Admin on 09-Mar-2011 00:00

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 ?

Posted by Community Admin on 09-Mar-2011 00:00

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>

This thread is closed