I have created a CMS site with 4 pages in EPIServer. Now I want to set the page with id '5' as the start page. in episerver.config section I am not finding the sitesettings section . I am developing the MVC application template provided by .NET. But not getting any option for setting pagesstartid. Where to set taht in episever.config file.
<episerverxmlns="http://EPiServer.Configuration.EPiServerSection"> <workflowSettings> <workflowHosttype="EPiServer.WorkflowFoundation.AspNetWorkflowManager,EPiServer.WorkflowFoundation" /> <definitions> <!-- definition: Workflow definitions that should be predefined, that is if no definition with specified type exists it will be created--> <!-- <definition name="Sequential Approval" description="A sequential approval workflow for pages" type="EPiServer.WorkflowFoundation.Workflows.SequentialApproval,EPiServer.WorkflowFoundation"/> <definition name="Parallel Approval" description="A paralell approval workflow for pages" type="EPiServer.WorkflowFoundation.Workflows.ParallelApproval,EPiServer.WorkflowFoundation"/> <definition name="Request for feedback" description="Assigns request for feedback tasks to users/roles" type="EPiServer.WorkflowFoundation.Workflows.RequestForFeedback,EPiServer.WorkflowFoundation"/> <definition name="Ready for translation" description="Assigns translation tasks to users/roles" type="EPiServer.WorkflowFoundation.Workflows.ReadyForTranslation,EPiServer.WorkflowFoundation"/>--> </definitions> <externalServices> <!-- externalService: Custom services that is to be registered with workflow runtime--> <externalServicetype="EPiServer.WorkflowFoundation.Workflows.ApprovalService,EPiServer.WorkflowFoundation" /> <externalServicetype="EPiServer.WorkflowFoundation.Workflows.ReadyForTranslationService,EPiServer.WorkflowFoundation" /> <externalServicetype="EPiServer.WorkflowFoundation.Workflows.RequestForFeedbackService,EPiServer.WorkflowFoundation" /> </externalServices> <references> <!-- reference: References for xoml based workflows, used at compiling of xoml based workflows--> <!-- reference path="C:\Inetpub\wwwroot\mysiste\bin\customdependency.dll" /--> </references> </workflowSettings> <applicationSettingshttpCacheability="Public"pageValidateTemplate="false"uiShowGlobalizationUserInterface="true"urlRebaseKind="ToRootRelative"uiUrl="~/EPiServer/CMS/"utilUrl="~/util/" /></episerver>
I have created a CMS site with 4 pages in EPIServer. Now I want to set the page with id '5' as the start page. in episerver.config section I am not finding the sitesettings section . I am developing the MVC application template provided by .NET. But not getting any option for setting pagesstartid. Where to set taht in episever.config file.