Заметки с перенаправлением | Notes with redirection
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

19 行
505B

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Перенаправление / Redirection</title>
  5. </head>
  6. <body>
  7. <script>
  8. const база = "метки_1.0.0.html";
  9. const запрос = window.location.search.substring(1);
  10. var адрес = база;
  11. if (запрос.length)
  12. {
  13. адрес += "?" + запрос;
  14. }
  15. window.location.href = адрес;
  16. </script>
  17. </body>
  18. </html>