Question

Using E3 can I create sub-websites?

For example:

Login Page, then you go to a specific sub website, with its own documents and libraries. Where each client is limited to their specific information.

Let's say if you had 3 clients:

  • Mary Washington
  • Virginia Tech
  • Radford

People logging in from Radford would be taken to a specific Radford sub-website limited to only information pertaining to Radford. The same would be for Mary Washington and Virginia Tech.

Was it helpful?

Solution

As I understood, you need to redirect users to specific location.

I implemented similar functionality using SharePoint audiences before. If you have any attribute detecting users from 'Mary Washington', 'Virginia Tech' and 'Radford', you can create separate SharePoint audiences for them. For example you may have 'Company' property for each user profile, then you can create audiences using rules like this:

Company = 'Mary Washington' Company = 'Virginia Tech' Company = 'Radford'

Each SharePoint web part has Audience property. If you fill this property, the web part will be visible only for members of that audience. You can put three content web parts on the same page, specify for each of them audience. Thus only one of web parts will be displayed at a time. In web parts put redirection JavaScript like this:

window.location = ""

As result only one web part will be displayed at a time, JavaScript inside the web part will redirect your users to location you need.

You can redirect users from your login page to this page, web parts inside the page will redirect your users to subsites.

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top