diff --git a/route/rule_domain.go b/route/rule_domain.go index fee22812..6602441d 100644 --- a/route/rule_domain.go +++ b/route/rule_domain.go @@ -53,7 +53,7 @@ func (r *DomainItem) Match(metadata *adapter.InboundContext) bool { if domainHost == "" { return false } - return r.matcher.Match(domainHost) + return r.matcher.Match(strings.ToLower(domainHost)) } func (r *DomainItem) String() string { diff --git a/route/rule_domain_keyword.go b/route/rule_domain_keyword.go index 64e99776..c6ca1e8c 100644 --- a/route/rule_domain_keyword.go +++ b/route/rule_domain_keyword.go @@ -26,6 +26,7 @@ func (r *DomainKeywordItem) Match(metadata *adapter.InboundContext) bool { if domainHost == "" { return false } + domainHost = strings.ToLower(domainHost) for _, keyword := range r.keywords { if strings.Contains(domainHost, keyword) { return true diff --git a/route/rule_domain_regex.go b/route/rule_domain_regex.go index c9cf788b..b3555168 100644 --- a/route/rule_domain_regex.go +++ b/route/rule_domain_regex.go @@ -47,6 +47,7 @@ func (r *DomainRegexItem) Match(metadata *adapter.InboundContext) bool { if domainHost == "" { return false } + domainHost = strings.ToLower(domainHost) for _, matcher := range r.matchers { if matcher.MatchString(domainHost) { return true