在ASP.Net中,可以通过URL等几乎相同的页面获取相同的内容
localhost:9000 / Index.aspx和localhost:9000 // Index.aspx甚至localhost:9000 /// Index.aspx
但它对我来说并不好看.
如何在用户转到某个页面之前删除这些额外的斜杠?
解决方法:
用这个 :
url = Regex.Replace(url , @"/+", @"/");
它将支持n次
2023-01-10 08:48:53
在ASP.Net中,可以通过URL等几乎相同的页面获取相同的内容
localhost:9000 / Index.aspx和localhost:9000 // Index.aspx甚至localhost:9000 /// Index.aspx
但它对我来说并不好看.
如何在用户转到某个页面之前删除这些额外的斜杠?
解决方法:
用这个 :
url = Regex.Replace(url , @"/+", @"/");
它将支持n次