I have a site collection with URL https://MySharepoint.Dev.com/default.aspx.

I just want to know if some one browses to this it should redirect to https://MySharepoint.Dev.com without default.aspx page.

I have almost around 30 sitecollections like this. Is there any setting where we can just include like that?

有帮助吗?

解决方案

I would use URL Rewrite module for this with pattern

(?:[^*]+)(?=\/default\.aspx)

In case you wish to get rid of /pages/ as well, use this for pattern

(?:[^*]+)(?=\/pages\/default\.aspx)

and Rewrite URL

{R:0}

It will tackle at least these scenarios

enter image description here

Details on configuring URL Rewrite module can be found here.

许可以下: CC-BY-SA归因
scroll top