Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Archive links are invalid: need to fix http://esug.org/data #314

Open
MarcusDenker opened this issue Jun 26, 2024 · 1 comment
Open

Archive links are invalid: need to fix http://esug.org/data #314

MarcusDenker opened this issue Jun 26, 2024 · 1 comment

Comments

@MarcusDenker
Copy link
Contributor

The ESUG archive (e.g. slides of conferences) used to be

http://esug.org/data

With the new website, we lost that. And it is no that simple to fix

  • this is ~40GB, so we can not put it on github pages
  • gitbub pages seemingly can not rewrite URLs

The archive for now is available as

http://old.esug.org/data/

@MarcusDenker MarcusDenker changed the title Archive links are invalid Archive links are invalid: need to fix http://esug.org/data Jun 26, 2024
@MarcusDenker
Copy link
Contributor Author

So we have setup http://archive.esug.org as a permanent URL

What is now missing: a rewrite. Github pages does not support this in any way. The only thing they have is the concept of a 404.html page. We could add an index.html and a 404.html in the data/ directory. The problem is that this would not make the URL serve the orginal file, but at least would redirect the browser to archive.esug.org:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="refresh" content="0; URL='https://example.com'/" />
    <title>404 - redirect</title>
</head>

<body></body>

</html>

The alternative would be to get real hosting for ESUG (e.g. OVH) like Pharo

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant