Files
tools/wwwroot/js/errorpages/homepage.js
T

7 lines
192 B
JavaScript
Raw Normal View History

2023-08-22 17:53:03 -04:00
function homepage() {
let proto = location.protocol;
let port = location.port;
let currentSite = window.location.hostname;
window.location = proto + '//' + currentSite + ':' + port;
}