When the page is ready, you can check the current language and redirect visitors to the relevant page.
// ES FAQ page
import wixWindow from 'wix-window';
import wixLocation from 'wix-location';
$w.onReady(() => {
let language = wixWindow.multilingual.currentLanguage;
if (language !== 'es') {
wixLocation.to(`/faq-${language}`);
}
})
You need to place code in each and every (FAQ) page, and change the red language code accordingly.