I am doing the SEO-optimization of my site and currently working with URLs. I've already removed the last slash and added redirection from
Now I want to remove all extra-slashes from my URL: This URL :
www.exaple/about///graduation
should redirect to
www.example/about/graduation.
I found similar questions in SO, but they seems to be asked in context of pure ASP.NET. Using System.Uri to remove redundant slash
Remove additional slashes from URL
How can I implement the same in MVC5?