编程语言
首页 > 编程语言> > c# – 从URL中删除其他斜杠

c# – 从URL中删除其他斜杠

作者:互联网

在ASP.Net中,可以通过URL等几乎相同的页面获取相同的内容
localhost:9000 / Index.aspx和localhost:9000 // Index.aspx甚至localhost:9000 /// Index.aspx

但它对我来说并不好看.

如何在用户转到某个页面之前删除这些额外的斜杠?

解决方法:

用这个 :

url  = Regex.Replace(url  , @"/+", @"/");

它将支持n次

标签:c,url,asp-net,slash
来源: https://codeday.me/bug/20190528/1170360.html