Files
lighttpd/data/htdocs/www/js/errorpages/homepage.js
2022-10-10 22:49:31 -04:00

7 lines
192 B
JavaScript

function homepage() {
let proto = location.protocol;
let port = location.port;
let currentSite = window.location.hostname;
window.location = proto + '//' + currentSite + ':' + port;
}