diff --git a/docs/static/redirect.js b/docs/static/redirect.js index 39e157c59..0d311f41b 100644 --- a/docs/static/redirect.js +++ b/docs/static/redirect.js @@ -1,5 +1,5 @@ window.onload = function() { - if (window.location.pathname !== '/docs/overview') { + if (window.location.pathname == '/' || window.location.pathname == "") { window.location.href = '/docs/overview'; } }; \ No newline at end of file