Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} robots.txt$ [NC]
RewriteRule ^([^/]+) $1 [L]
RewriteRule (.*) https://1.domain.com/$1 [R=302,L]
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/robots\.txt$
RewriteCond %{REQUEST_URI} !^/sitemap\.xml$
RewriteRule (.*) https://1.domain.com/$1 [R=302,L]
RewriteEngine On
RewriteRule ^(robots\.txt|sitemap\.xml)$ - [L]
RewriteRule (.*) https://1.domain.com/$1 [R=302,L]