fr3d
fr3d

Reputation: 685

How to redirect all pages in folder?

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

Answers (1)

anubhava
anubhava

Reputation: 785276

You can use a simple redirect in your site root .htaccess:

RedirectMatch 301 ^/en/(customer-detai.*)$ /de/$1

Upvotes: 1

Related Questions