Kā novirzīt URL lapu ar Javascript.
Javascript novirzīšana neatgriež 301 pastāvīga novirzīšanas statusa kodu.
Aizstājiet veco lapu ar novirzīšanas kodu ar tās lapas URL, uz kuru vēlaties novirzīt.
old-page.html:
<!DOCTYPE html/
<html/
<body/
<script type="text/javascript"/
// Javascript URL redirection
window.location.replace("http://www.mydomain.com/new-page.html");
</script/
</body/
</html/
Meklētājprogrammas izmanto statusa 301 kodu, lai pārsūtītu lapas rangu no vecā URL uz jauno URL.
Javascript novirzīšana atgriež http atbildes statusa kodu: 200 OK.
Tātad Javascript novirzīšana nav draudzīga meklētājprogrammām, un labāk ir izmantot citas novirzīšanas metodes, kas atgriež statusa kodu: 301 Moved Permanently.
javascript-redirect-test.htm
<!DOCTYPE html/
<html/
<body/
<script
type="text/javascript">
// Javascript URL redirection
window.location.replace("https://kylabs.net/web/dev/javascript-redirect.htm");
</script>
</body>
</html>
Nospiediet šo saiti, lai novirzītu no javascript-redirect-test.htm atpakaļ uz šo lapu: