I have a series of dynamic URLs from the old site that need to be redirected to the static URL on the new site. I think I need to use a wildcard in the rewrite rule but not sure.
Example -- multiple versions of the same URL:
www.example.com/page-category/page/20130908f521
www.example.com/page-category/page/20131026a640
www.example.com/page-category/page/20131025y307
etc.
I want to redirect them all to:
www.example.com/page-category/page/
Sooo, something like this?:
RewriteRule^page/(.*)$http://www.example.com/page-category/page/[R=301,L]
Thanks all for help