Regex with no variable: ```php $r->addRoute('GET', '/{user|person}', 'get_user_handler'); ``` Case insensitive flag: ```php $r->addRoute('GET', '/{/user/i}', 'get_user_handler'); ``` I tried both, they did not work. Am I doing it wrong?