Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

2 Answers

up vote 4 down vote accepted

Sure, just add a middleware function to modify it. For example:

app.use(function(req, res, next) {
  if (req.url.slice(-1) === '/') {
    req.url = req.url.slice(0, -1);
  }
  next();
});

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 app.use(app.router).

share|improve this answer
I think it is working fine, but the path on the browser continues the same... Is it possible to rewrite the URL on the user browser too or just using res.redirect ? – Rafael Motta Nov 19 '12 at 0:42
2  
If you want to modify the URL in the browser, I think you need to redirect the user. See the answer and comments here. – David Weldon Nov 19 '12 at 0:53

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

var io = require('socket.io').listen(80);

io.sockets.on('connection', function (socket) {
    socket.emit('changeUrl', { url: '/about' });
});

- Client Side

<script src="/socket.io/socket.io.js"></script>
<script>
  var socket = io.connect('http://localhost');
  socket.on('changeUrl', function (data) {
      changeUrl(data.url);
  });
</script>

function changeUrl(url) {
    window.history.pushState(data, "Title", url);
}

This will change the url in response to something happening in the backend. Note: It'll only work in some browsers.

Niall

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.