Julia Computing changed URLs of Blog

Julia Computing has changed their URL scheme for the Blog, e.g. this old URL
https://juliacomputing.com/blog/2020/06/22/fast-csv.html
is now
https://juliacomputing.com/blog/2020/06/fast-csv/

A regex rule should be setup to automatically refer to the new scheme.
Apache would be:
RewriteRule ^(/blog/.?/.?)/.?/(.?).html$ $1/$2/ [R=301,L]

2 Likes

Small note that this is due to Franklin and the package has a way to add redirects to pages to help with migration by adding to pages

{{redirect the/path/of/page.html}}

if this was desired. The SciML website does it automatically for instance: sciml.ai/utils.jl at master · SciML/sciml.ai · GitHub