A lightweight and easy-to-use js library to redirection for support differents languages
Include this tag in your html head
<script src='https://cdn.jsdelivr.net/gh/lullaby6/language-redirect.js/language-redirect.cdn.js'></script>
or Download
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.js/language-redirect.cdn.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'
});