Forum Discussion

RMDUser1's avatar
RMDUser1
Brass Contributor
Nov 17, 2025

Classic SharePoint list view redirecting to home page

Hello!

I have an old Classic SharePoint site that I need to create a new view in a list for.  I have created this view but whenever I go to open that view it redirects me to the homepage.

This site was build by someone else and I believe this is by design to stop users from using admin only views....but how do I stop this for my new view? I need some users to be able to use it.

When I create a personal view it does not do this redirect.

Any ideas how I can stop it happening on a public view?  Or will I need each of my users who need a new view to set up personal views of their own?

1 Reply

  • virendrak's avatar
    virendrak
    Iron Contributor

    In Classic SharePoint sites, if a public view redirects to the homepage, it usually means a custom redirect or script was deliberately added by the original site builder to block certain views (often admin‑only) because Classic sites allow customizations. That behavior isn’t native to SharePoint itself. To stop it, you’ll need to remove or adjust the redirect logic in the site’s master page, page layout, or script injection on list forms.

    • If the redirect happens only for one list (or certain views of that list):  It’s very likely a script tied to that list’s forms (e.g., DispForm.aspx, EditForm.aspx, or a custom view page). Developers sometimes drop JavaScript into those pages via a Script Editor or Content Editor web part to enforce redirects.
    • If the redirect happens across all lists and views in the site: That points to a master page customization (or page layout) in the Classic site. Redirect logic added at the master page level will affect every list view, because the master page wraps all content.

    You can follow these options to investigate it

    • Open the affected view in Classic mode: Use browser dev tools (F12) to check if a redirect script is firing.
    • Inspect the page:  Look for Script Editor/Content Editor web parts or inline JavaScript.
    • Check Master Page:  In Site Settings > Master Page Gallery, see if custom master pages are in use. If so, open them in SharePoint Designer or download to inspect for redirect code.

     

    If my post solved your issue or answered your query, please mark it as a Solution and give it a Like.

Resources