I have this related problem, and here’s my solution in this thread
Basically, I register the www subdomain on Webflow, then redirect the www subdomain to Webflow from my web host, but keep the root domain on my server, and redirecting non-existing subdomain folders to Webflow.
RewriteOptions inherit
RewriteEngine on
Options -Indexes
RewriteCond %{HTTP_HOST} ^(www\.)?samliew.com$
RewriteRule ^blog\/?(.*)$ "http://blog.samliew.com/$1" [R=301,L]
RewriteCond %{HTTP_HOST} ^(www\.)?samliew.com$
RewriteRule ^(.*)$ "https://www.samliew.com/$1" [R=301,L]