JPashs
JPashs

Reputation: 13886

Redirect in htaccess using replace and a wildcard?

I need to create a redirect to the same domain in my htaccess like this:

http://www.example.com/fr/checkout/N/review Where N is a wildcard which can take any number value.

to

http://www.example.com/en/checkout/N/review

Example:

http://www.example.com/fr/checkout/65/review

to

http://www.example.com/en/checkout/65/review

You can see that fr was replaced by en and the value of N was just inserted.

Upvotes: 1

Views: 59

Answers (1)

Amit Verma
Amit Verma

Reputation: 41219

Try the following in htaccess :

RedirectMatch ^/fr/checkout/([^/]+)/review$ /en/checkout/$1/review

Upvotes: 1

Related Questions