the subdomains are not working on the hosting that include this htaccess file
this code file ".htaccess":
Options +FollowSymlinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule .* - [L]
RewriteRule ^(.*)/cgi-bin/(.*?)/ $2.php?lang=$1 [L,NC,QSA]
I want as follows: https://example.com/us/cgi-bin/index/ to https://subdomin.example.com/us/cgi-bin/index/
Depending on the above file ".htaccess".
Please help me to fix that