Give a static file its own page link

Hello world!
Long-time viewer, first-time caller here.
Hope this is a simple question.

I have a static resume.pdf file in my static/ directory. It is then reachable from the web via the address https://myhugosite.com/resume.pdf. Everything is awesome so far.

How do I create a page https://myhugosite.com/resume that would automatically redirect to https://myhugosite.com/resume.pdf with the least amount of elbow grease?

Thank you!

Add the following to your content/resume.md file. It will redirect /resume/ to /resume.pdf

<!DOCTYPE html>
<html>

<head>
  <title>Resume</title>
  <link rel="canonical" href="/resume.pdf" />
  <meta name="robots" content="noindex">
  <meta charset="utf-8" />
  <meta http-equiv="refresh" content="0; url=/resume.pdf" />
</head>

</html>

Works like magic! Thanks!

For people wanting to read further.