문제

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 ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top