301 redirect a folder to one page

Hi there

The old site has a folder of designs at

/home-designs/design1

The new site doesn’t have most of those designs, so I wan to catch all the broken links and send them to

/all-floor-plans

I have tried sending

/home-designs/(.*) ----> /all-floor-plans

but it doesn’t work. just goes to 404.
any ideas?

Ta

Share your published URL if you want help.

www.sentinelhomes.co.nz

Did you publish the site after making the redirects? If so, create a simple test using somepage > some-existing page, publish and check to see if it is working.

The - character is a special character that needs to be escaped. If you instead try this redirect:

/home%-designs/(.*) ----> /all-floor-plans

it should work. This page on the webflow university has more details!

2 Likes

Brilliant, thanks Nathan! That works fine now.