100% Free Forever
AI-Powered Learning
Industry Expert Content
Certificates & Badges
Learn At Your Own Pace
Programming

Sites and Site Collections

How SharePoint organizes content into sites, subsites, and site collections, and how the modern hub-site model replaced the classic hierarchy.

FoundationsBeginner8 min readJul 10, 2026
Analogies

Sites and Site Collections

A site collection is the technical unit SharePoint uses to group related sites together, sharing a single top-level URL, a common set of site collection administrators, and one storage quota. In the modern SharePoint experience, every new site you create — whether a team site backed by an Microsoft 365 Group or a standalone communication site — is automatically its own site collection with its own URL, unlike the classic model where administrators built deep subsite hierarchies under one shared site collection.

🏏

Cricket analogy: A site collection is like a franchise's entire organizational umbrella in the IPL, such as the Chennai Super Kings franchise, which shares one ownership structure and budget even though it fields separate senior and youth squads underneath.

Classic Hierarchy vs Modern Flat Sites

Classic SharePoint encouraged deep nesting, where a top-level portal site contained subsites for every department, and those subsites contained further subsites, all inheriting permissions and navigation from the parent unless explicitly broken — a structure that became brittle and hard to reorganize as companies grew. Modern SharePoint instead favors flat, independent sites (each its own site collection) associated together through hub sites, which add shared navigation, a common theme, and associated search scoping without forcing a rigid parent-child permission hierarchy.

🏏

Cricket analogy: Classic nested subsites are like a rigid domestic cricket structure where every state team's junior squads report strictly up through one command chain, while hub sites are like an independent league where each franchise stays autonomous but shares a common broadcast brand.

Hub Sites in Practice

A hub site is a designated site that other sites register to, inheriting its top navigation bar, theme, and logo, and gaining a combined search experience that surfaces content across all associated sites in one query — for example, a 'Marketing' hub might link together the Campaigns site, the Brand Assets site, and the Events site so employees browsing any one of them see the same navigation bar linking to the other two. Only a SharePoint administrator or a delegated hub-site owner can register a site to a hub, and a site can belong to only one hub at a time.

🏏

Cricket analogy: A hub site is like an IPL broadcast umbrella that gives every franchise's individual channel the same on-screen graphics package and cross-promotes highlights from other franchises during a shared broadcast window.

powershell
# Register a communication site as a hub, then associate a team site to it
Register-PnPHubSite -Site "https://contoso.sharepoint.com/sites/MarketingHub"

Add-PnPHubSiteAssociation -Site "https://contoso.sharepoint.com/sites/Campaigns" `
  -HubSite "https://contoso.sharepoint.com/sites/MarketingHub"

Get-PnPHubSiteChildren -Identity "https://contoso.sharepoint.com/sites/MarketingHub"

Because every modern site is its own site collection, permissions do not cascade from a hub to its associated sites automatically — hub association only shares navigation, theming, and search, so you must still manage each associated site's membership and permissions independently.

Deleting a hub site does not delete its associated sites, but those sites lose the shared navigation and combined search until reassociated to a new or different hub, so plan hub restructuring carefully in large tenants.

  • A site collection is the technical grouping unit sharing one URL, admin group, and storage quota.
  • Every modern SharePoint site is its own independent site collection by default.
  • Classic SharePoint used deep nested subsites inheriting permissions from a parent site.
  • Modern SharePoint favors flat, independent sites connected via hub sites instead of nesting.
  • Hub sites share top navigation, theme, and combined cross-site search across associated sites.
  • A site can belong to only one hub at a time, and association does not cascade permissions.
  • Only admins or delegated hub owners can register sites to a hub.

Practice what you learned

Was this page helpful?

Topics covered

#Programming#SharePointStudyNotes#SitesAndSiteCollections#Sites#Site#Collections#Classic#StudyNotes#SkillVeris#ExamPrep