重定向

docsite默认会在项目根目录下根据模板redirect.ejs生成index.html404.html(用于某些静态站点托管平台自定义404页面的功能)。redirect.ejs中配置了访问到根目录时的跳转逻辑。如下所示:

  1. <script>
  2. window.rootPath = '<%= rootPath %>';
  3. window.defaultLanguage = '<%= defaultLanguage %>';
  4. var lang = Cookies.get('docsite_language');
  5. if (!lang) {
  6. lang = '<%= defaultLanguage %>';
  7. }
  8. window.location = window.rootPath + '/' + lang + '/docs/installation.html';
  9. </script>