0

I need a 301 redirect from these pages:

form/5/asd.html
form/5/12dasd.html
form/5/dasidjasd.html
form/5/pasd1.html

Always to this page: /form/12/name.html

Can you help me, because I never understand .htaccess redirects :(

1 Answers1

2

Use RedirectMatch with a wildcard, and remember to use the complete URL when specifying where to redirect to:

RedirectMatch 301 /form/5/.* www.example.com/form/12/name.html
espenoh
  • 81
  • 4