سؤال

I want to set a page of subsite as home page of its parent site. Is it possible ?

هل كانت مفيدة؟

المحلول

You can use PowerShell. Something like this:

$web = Get-SPWeb -Identity http://yourportalurl.ru
$folder = $web.RootFolder
$folder.WelcomePage = "filter/Lists/presidents/AllItems.aspx"
$folder.Update()

Url of WelcomePage must be relative url (not started with "/"). In my example I set list view of subsite.

نصائح أخرى

You can't do it in browser settings. You could add a content editor webpart (or script editor web part, depending on your version) to the home page of the parent site that redirects to the subsite page using javascript.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى sharepoint.stackexchange
scroll top