Hi @sankar07 ,
I can see there are multiple 302 redirects happening which is not needed. Try below rules and modify as per your need. 1st to make sure the redirection is to https and 2nd one to append /content/brand. More [R] redirects are not needed in my opinion. You can have PT flag instead:-
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^/?$ https://brand.com%{REQUEST_URI} [L,R]
RewriteCond %{HTTP_HOST} ^brand.com$ [NC]
RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^/$ https://brand.com/en/landingpage [R=301,L]
RewriteCond %{REQUEST_URI} !^/apps
RewriteCond %{REQUEST_URI} !^/content
RewriteCond %{REQUEST_URI} !^/etc
RewriteCond %{HTTP_HOST} brand.com
RewriteRule ^/(.+) /content/brand/in/$1 [PT,L,NC]