Заметки с перенаправлением | Notes with redirection
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

19 řádky
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>