Forum Moderators: phranque
RedirectPermanent /old page-1.html /old page-2.html http://example.com/new-page.html
or:
RedirectPermanent /old page-1.html http://example.com/new-page.html
RedirectPermanent /old page-2.html http://example.com/new-page.html
[edited by: jdMorgan at 1:32 pm (utc) on Nov. 15, 2005]
[edit reason] Example.com [/edit]
However, if these old pages' URL-paths have a lot in common, then look into using RedirectMatch, with which you can use regular expressions pattern-matching to match more than one URL-path.
For a simple example:
RedirectMatch 301 ^/old-page-[12]\.html$ http://example.com/new-page.html
Jim