craftinginterpreters icon indicating copy to clipboard operation
craftinginterpreters copied to clipboard

No HTTPS redirect

Open elimerl opened this issue 3 years ago • 0 comments

This is an INCREDIBLY minor issue, but the site's HTTP page does not redirect to HTTPS. It seems that this is served using Apache from the headers, so it should be something like:

<VirtualHost *:80> 
  ServerName craftinginterpreters.com
  ServerAlias www.craftingintepreters.com

  Redirect permanent / https://craftinginterpreters.com/
</VirtualHost>

Thanks for the fantastic book!

elimerl avatar Aug 30 '22 02:08 elimerl