Files
squidguard/data/htdocs/www/js/errorpages/homepage.js
T

7 lines
192 B
JavaScript
Raw Normal View History

2022-02-15 09:55:45 -05:00
function homepage() {
let proto = location.protocol;
let port = location.port;
let currentSite = window.location.hostname;
window.location = proto + '//' + currentSite + ':' + port;
}