Can't access wacz directly in replayweb.page

I’ve got an interesting problem. If I open the following URL it works fine!

https://www.wticalumni.com/embed/test.htm

Here’s the code for test.htm

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>

  <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">

  
  </head>

}
<body>

<style>
  html, body {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
  }
</style>
<center>
<p style="font-size: 40px;">Historical web site for WTIC-AM-FM-TV <br>
Before the 1974 sale by the Travelers Insurance Co.
</center></p>


<script src="https://cdn.jsdelivr.net/npm/replaywebpage@2.2.5/ui.js"> </script> 


<replay-web-page 

source="https://www.wticalumni.com/embed/WTIC.wacz" url="https://www.wticalumni.com/index.htm">

</replay-web-page>

</body>
</html>

When I try to access the wacz directly with replayweb.page at

https://www.wticalumni.com/embed/WTIC.wacz

it starts downloading the file, rather then opening it.

I must be missing something.

Thanks.

That link is just a direct link to download the file. The link to open in ReplayWeb.page would be:
https://replayweb.page/?source=https%3A%2F%2Fwww.wticalumni.com%2Fembed%2FWTIC.wacz

However, the WACZ can’t be loaded due to missing CORS header. We have a guide about configuring CORS headers here: Configuring CORS - Replay Webpage Docs

Unrelated, but you have a typo here on the page, you want to remove the extra “}”

Interesting, I had set the CORS in the past, but it must have disappeared somehow… my web host is merging with another so I dunno…

Also thanks for catching the typo.

All set now. I really appreciate the reply.