Reputation: 685
I have some old pages and I need to redirect them.
Example: I need to redirect from:
www.domain.com/en/customer-detail/"customer_name"
to:
www.domain.com/de/customer-detail/"customer_name"
How can I do this?
Thx
Upvotes: 1
Views: 20
Reputation: 785276
You can use a simple redirect in your site root .htaccess:
RedirectMatch 301 ^/en/(customer-detai.*)$ /de/$1
Upvotes: 1