Do not think that you can make the directive Redirect(part of mod_alias) case insensitive, but there is a mod_rewrite flag that you can use. You will need to change all your redirects:
Redirect 301 /post/My-Blog-Post.aspx https://www.example.com/blog/a-new-post/
at
RewriteRule ^/?post/My-Blog-Post.aspx$ https://www.example.com/blog/a-new-post/ [L,R=301,NC]
NC, " ". URI, /post/my-blog-post.aspx , https://www.example.com/blog/a-new-post/.