Ну, похоже, только js может это прочитать. Я кодирую js в первый раз, но вот что я придумал:
(эта страница открывается браузером)
<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<script type="text/javascript">
if (document.URL.indexOf("#") != -1)
{
var this_url = document.URL.replace("#", "?");
const request = new XMLHttpRequest();
request.open('GET', this_url);
request.setRequestHeader('Content-Type', 'application/x-www-form-url');
request.send();
}
</script>
</body>
</html>