How do I redirect all URLs starting from a particular pattern to another?
Description:
I want to be able to redirect as follows:
/pattern1/step1/ to /pattern2/step1/
/pattern1/step2/ to /pattern2/step2/
/pattern1/continue/ to /pattern2/continue/
What is the easiest way of doing this in Django URL patterns?