I had the same issue but I fixed it by putting an .htaccess file into the blog folder. It seems that you forgot to add the index.php into the first line.
Here’s the code:
DirectoryIndex index.php index.html
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
https://www.yesimprint.com
https://www.yesimprint.com/blog