if you setup a preroute such as ``` clojure (pre-route '/admin/*' {} (when-not (is-admin?) (redirect '/login'))) ``` when the application runs on app sever with a context, eg: `http://localhost/myapp/admin`, preroute for `/admin` will not be triggered.