diff --git a/src/Titanium.Web.Proxy/Helpers/HttpHelper.cs b/src/Titanium.Web.Proxy/Helpers/HttpHelper.cs index eb90c95f7..c345f83ee 100644 --- a/src/Titanium.Web.Proxy/Helpers/HttpHelper.cs +++ b/src/Titanium.Web.Proxy/Helpers/HttpHelper.cs @@ -154,7 +154,7 @@ internal static string GetWildCardDomainName(string hostname) { // issue #769 // do not create wildcard if second level domain like: pay.vn.ua - if (split.Length == 3 && split[1].Length <= 3) + if (split[0] != "www" && split[1].Length <=3) { return hostname; }