diff --git a/src/Ocelot/DownstreamRouteFinder/UrlMatcher/UrlPathPlaceholderNameAndValueFinder.cs b/src/Ocelot/DownstreamRouteFinder/UrlMatcher/UrlPathPlaceholderNameAndValueFinder.cs index 0859f4c0..8e5a2416 100644 --- a/src/Ocelot/DownstreamRouteFinder/UrlMatcher/UrlPathPlaceholderNameAndValueFinder.cs +++ b/src/Ocelot/DownstreamRouteFinder/UrlMatcher/UrlPathPlaceholderNameAndValueFinder.cs @@ -70,7 +70,7 @@ namespace Ocelot.DownstreamRouteFinder.UrlMatcher private bool CharactersDontMatch(char characterOne, char characterTwo) { - return characterOne != characterTwo; + return char.ToLower(characterOne) != char.ToLower(characterTwo); } private bool ContinueScanningUrl(int counterForUrl, int urlLength)