Using ExpressJS 4 I'm not able to get a dollar sign to work in URL e.g. ``` js app.post('/foo/$bar', handler); ``` ``` Cannot POST /foo/$bar ``` According to RFC dollar sign should be safe character, is it something I'm missing here?
Using ExpressJS 4 I'm not able to get a dollar sign to work in URL e.g.
According to RFC dollar sign should be safe character, is it something I'm missing here?