I tried the `$urlMatcherFactoryProvider` config: ``` javascript app.config(function ($urlMatcherFactoryProvider) { $urlMatcherFactoryProvider.caseInsensitive(true); $urlMatcherFactoryProvider.strictMode(false); }); ``` http://plnkr.co/edit/zdHlfVHBpnwDD3W5iUOW?p=preview I traced this down to [this line](https://github.com/angular-ui/ui-router/blob/master/src/urlMatcherFactory.js#L122), not sure if this is the intended behavior or it should be like this: ``` javascript type = $$UMFP.type(regexp || "string") || inherit($$UMFP.type("string"), { pattern: new RegExp(regexp, config.caseInsensitive ? 'i' : undefined) }); ``` Thanks.