@leadforms
Try this format via your .htaccess
# Enable Rewrite Engine
RewriteEngine On
RewriteBase /
# Individual 301 Redirects
Redirect 301 /page1.html /folder1/page1.html
Redirect 301 /page2.html /folder2/page2.html
Redirect 301 /page3.html /folder3/page3.html
# ... (and so on for the other 4997 pages)
# If there are other specific redirects unrelated to the pages being moved, you can add them here as well.
I hope it helps you.