In the code below, `$page` is highlighted as an unknown variable. ``` location ~ ^/pages/(?<page>[^/]+)/?(edit)?$ { root /var/www/website/pages; try_files /$page/index.html /index.html =404; } ``` 