Copy all files into the '/maintenance' subfolder or whatever you like (this simplifies the use of .htaccess)
Copy actual .htaccess to .htaccess-ON
Create new .htaccess-OFF with the follow contents:
Options All -Indexes
Options +FollowSymlinks
RewriteEngine On
RewriteBase / # use it if appweb is in a root of domain
# RewriteBase /<folder_name>/ # use it if appweb is in a subfolder
## RewriteCond %{REQUEST_URI} !maintenance.html$
## RewriteRule .* maintenance.html [L]
## RewriteRule .* /maintenance.html [R=307,L]
RewriteCond %{REQUEST_URI} !assets/maintenance/index.html$
## RewriteRule .* assets/maintenance/index.html [L]
RewriteRule !^assets($|/) assets/maintenance/index.html [L]