A lightweight and easy-to-use js library to redirection for support differents languages.
<script src='https://cdn.jsdelivr.net/gh/lullaby6/language-redirect/language-redirect.js'></script>
In your script tag you can use the data-language-redirect
attribute for config the redirects easly:
<script
src='https://cdn.jsdelivr.net/gh/lullaby6/language-redirect/language-redirect.js'
data-language-redirect='{ "es": "/es/about.html" }'
></script>
Also you can use the languageRedirect
function to config the redirects via JavaScript:
languageRedirect({
es: '/es/index.html'
});