12345678910111213141516171819 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title></title>
- </head>
- <body>
- <script>
- var xmlhttp = new XMLHttpRequest();
- xmlhttp.open("GET", "http://192.168.1.113:86/seeyon/fullTextSearching", true);
- xmlhttp.send();
- xmlhttp.onreadystatechange = function () {
- if (xmlhttp.readyState == 4 && (xmlhttp.status == 200 || xmlhttp.status == 0)) {
- window.location.href = "http://192.168.1.113:86/seeyon" + window.location.search.slice(5)
- }
- }
- </script>
- </body>
- </html>
|