General 404 on multilingual website

Hey everyone,

I’ve currently got a multilingual website with the following configuration for 404 redirects:
/en/* /en/404/ 404
/fr/* /fr/404/ 404
/nl/* /nl/404/ 404

But how can I redirect the “root 404” ?
For example when people try a language that doesn’t exist?

I tried the following, but that one caught all 404’s:
/* /en/404/ 404

Could the problem be that this last line was at the top op the redirects list?

Gr,

Andy

Yes, that definitely makes a difference! Redirects are processed from top to bottom.

1 Like

Just tried it out while you replied @tomrutgers, and indeed.
Thanks for the reply!

1 Like