website icon indicating copy to clipboard operation
website copied to clipboard

/io.html link now located at /syncio.html should configure a 301 redirect in NGINX

Open DanielBelmes opened this issue 2 years ago • 0 comments

https://nim-lang.org/Nim/io.html Returns a 404 as the module has moved to lib/std/syncio

if nginx is configured with something like:

location = /Nim/io.html {
  return 301 $scheme://$host/Nim/syncio.html;
}

Google will pick up the change eventually as well so it'll eventually stop showing io.html as a result and show syncio.

DanielBelmes avatar Aug 03 '23 00:08 DanielBelmes