My issue is actually close to this one: Umbraco V6 404 not handled properly according to culture
I have 2 directories with different culture:
Content
EN
page1
page2
404
FR
page1
404
When I go from a FR page to a 404, the culture is back in english.
It looks like it's url-based, and probably with a 404 the engine can't find a link so it sets the culture as default but I would like to maintain this culture when the user meets a 404 page.
my config:
<error404>
<errorPage culture="en-US">1187</errorPage>
<errorPage culture="fr-FR">1189</errorPage>
</error404>
How can I do that ?
I use one-level path in domains.
Example of urls:
- site/en/page1
- site/en/page2
- site/fr/page1
I use umbraco 7.2.5
EN
node structure and test theFR
redirect to the FR 404 page? – Jahdai