解決中文地址Uri.IsWellFormedUriString返回false
Posted 0banana0
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解決中文地址Uri.IsWellFormedUriString返回false相关的知识,希望对你有一定的参考价值。
數字和大小寫字母都ok,但是中文地址就會有問題
public bool IslocalURL(string url) { if (string.IsNullOrEmpty(url)) { return false; } Uri absoluteUri; if (Uri.TryCreate(url, UriKind.Absolute, out absoluteUri)) { return String.Equals(this._httpContext.Request.Url.Host, absoluteUri.Host, StringComparison.OrdinalIgnoreCase); } else { bool isLocal = !url.StartsWith("http:", StringComparison.OrdinalIgnoreCase) && !url.StartsWith("https:", StringComparison.OrdinalIgnoreCase) && Uri.IsWellFormedUriString(url, UriKind.Relative); return isLocal; } }
解決辦法:
利用 Uri.EscapeUriString(String) Method
Converts a URI string to its escaped representation.
public static string EscapeUriString (string stringToEscape);
.
//解决中文url 不会触发301 pageUrl = Uri.EscapeUriString(pageUrl); //301 (permanent) redirection if (webHelper.IslocalURL(pageUrl)) { filterContext.Result = new RedirectResult(pageUrl, true); }
參考:
https://docs.microsoft.com/zh-cn/dotnet/api/system.uri?redirectedfrom=MSDN&view=netframework-4.7.2
以上是关于解決中文地址Uri.IsWellFormedUriString返回false的主要内容,如果未能解决你的问题,请参考以下文章
四,手写SpringMVC框架,业务层-什么是耦合/依赖?如何解決
超有效的解決方案:Failed to load resource: the server responded with a status of 404 (Not Found)
何解決 LinqToExcel 發生「無法載入檔案或組件」問題何解決 LinqToExcel 發生「無法載入檔案或組件」問題