码迷,mamicode.com
首页 > 其他好文 > 详细

解決中文地址Uri.IsWellFormedUriString返回false

时间:2018-12-24 19:02:34      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:ignore   fun   case   form   from   als   nta   返回   iso   

 

數字和大小寫字母都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

标签:ignore   fun   case   form   from   als   nta   返回   iso   

原文地址:https://www.cnblogs.com/0banana0/p/10170272.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!