I want to redirect https://aaa.subdomain.example.com/path to https://subdomain.example.com/aaa/path
But how to do that with apache .htaccess file?
I tried this, however, it didn't work :(
RewriteCond %{HTTP_HOST} ^([a-z0-9]+)\.subdomain\.example\.com [NC]
RewriteRule .* https://subdomain.example.com/%1/${REQUEST_URI}