Is it possible to rewrite the URL path using node.js?(I'm also using Express 3.0)
I've tried something like this:
req.url = 'foo';
But the url continues the same
|
|
|
Sure, just add a middleware function to modify it. For example:
This function removes the trailing slash from all incoming request URLs. Note that in order for this to work, you will need to place it before the call to |
|||||||
|
|
At first I thought David was correct and that redirection is the only way. But of course, its not. Node is a backend service. In order to change the url you'd have to do something on the frontend. The following will work Use socket.io and on a certain command being issued by the server call a client side function that does this: - Server Side
- Client Side
This will change the url in response to something happening in the backend. Note: It'll only work in some browsers. Niall |
||||
|
|