Forum Moderators: Robert Charlton & goodroi
I'm planning to move the site just one or two pages at a time to the new URLs and watch the effects, but I'd like to know what I'm in for before I start the move.
I've also noticed that PR seems to pass through a single redirect step, but not through a chain of multiple redirects. Can't be 100% about this, but it makes sense to ensure there's only one redirect step. Complicated chains can be created, for instance, if you also use a no-www to with-www redirect and don't think your code through from this angle.
How about:
RewriteEngine on
RewriteRule ([^.]+)\.html$ /$1.jsp [L]
Store everything that is not a dot as a 'BackReference', then serve the information 'transparently' from the new .jsp location to the old .html location.
Then your 'cool URLs don't change' (on Apache anyway).
Justin
BTW: The answer to your question is 'Yes' and what Tedster said about not stacking redirects.