niluka anuradha
niluka anuradha

Reputation: 13

redirect 301 htaccess not working

I have added 301 rederect as follow Redirect 301 /vc/guides-voyage/vietnam/hanoi /vc/guides-voyage/

But when site load /vc/guides-voyage/vietnam/hanoi it rederect to /vc/guides-voyage//hanoi Im unable to figure out the issue.

Upvotes: 1

Views: 59

Answers (1)

anubhava
anubhava

Reputation: 784908

Use this RedirectMatch rule in your DOCUMENT_ROOT/.htaccess file:

RedirectMatch 301 ^/(vc/guides-voyage)/vietnam/hanoi/?$ /$1

Upvotes: 1

Related Questions