See discussion in https://github.com/sulu-io/sulu/pull/945#issuecomment-94721967

I also noticed that if you create a page /about
then rename it to /about2
then rename it to /about3
and try to go to /about
you'll see chain of redirects /about 301 -> /about2 301 -> /about3
which is bad for SEO
all change history should end up with 1 hop of redirect. In this case:
GET /about 301 -> /about3
GET /about2 301 -> /about3
@mordamax Thank you for report. Can you create a seperate issue for this. As this seems not be to this issue.
@mordamax sulu.rocks is an outdated version, can you try with the latest one as well? Just tested this on Sulu 2.0, and the issue as you describe it does not seem to occur there...
@danrot thanks, re-checked, it works fine
Can we close this then? 馃槆
@nnatter No, the initial issue was about something else... The thing is that we load the entire page before doing the redirect, which is unnecessarily slow...