18 lines
449 B
HTML
18 lines
449 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<script type="text/javascript">
|
|
const l = window.location;
|
|
l.replace(
|
|
l.origin +
|
|
l.pathname.split('/').slice(0, 1).join('/') + '/?/' +
|
|
l.pathname.slice(1).split('/').join('/').replace(/&/g, '~and~') +
|
|
(l.search ? '&' + l.search.slice(1).replace(/&/g, '~and~') : '') +
|
|
l.hash
|
|
);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html> |