In reference to #14070, a slash found in the params of a route such as `get 'foo/:token` where `:token` contains a "/" would return a 404 because `:token` does not get URL escaped. `:token` should probably be escaped just as it would a regular param (after the ?).