To rewrite all requests to /news/2012/... to /archive/news/2012/... you must add a reference to the content of the original URL. Create a new URL rewrite rule and define a dynamic URL path rewrite using wildcard pattern parameters:
When incoming requests match
- Wildcard pattern
- Request URL:
https://<YOUR_HOSTNAME>/news/2012/*
- Request URL:
Then rewrite the path and/or query
- Target path: [
/]news/2012/* - Rewrite to: [
/]archive/news/2012/${1}
Make sure to replace <YOUR_HOSTNAME> with your actual hostname and adjust the example paths according to your setup.