<!DOCTYPE html>
<html lang="en">
<head>
<script>
const l = window.location.href;
const s = l.split('index.html')[0];
window.location.href = s + 'main_window/index.html'
</script>
<!-- the document has no actual content; neither character encoding nor styles and scripts are needed -->
</head>
<body>
<!-- no body content in case of redirect -->
</body>
</html>
This causes that even though the web version (after executed redirect) does display the game's title correctly:
But, when web-crawlers or robots (like short.io) crawls https://play.lostmine.cc/, the title is missing:
Overview
Please, add the missing
<title>
element the to<head>
section of web version's main index.html file.Details
The destination file (see: https://play.lostmine.cc/main_window/index.html) has
<title>
added element the to<head>
section:But the source (initial, startup) file (see: https://play.lostmine.cc/index.html), added in #113 and 987b7e42 doesn't have it:
This causes that even though the web version (after executed redirect) does display the game's title correctly:
But, when web-crawlers or robots (like short.io) crawls https://play.lostmine.cc/, the title is missing:
Please, fix this by adding the missing
<title>
element the to<head>
section of https://play.lostmine.cc/index.html file. Thanks!