This is my .htaccess file:
RewriteEngine On
<If "%{HTTP_HOST} == '<myHost>'">
RewriteRule ^$ <url> [R=301,L]
</If>
<Else>
RewriteRule ^$ <another_url> [R=301,L]
</Else>
But it doesn't work and it seems like the <If> statement is ignored. I also made an echo from $_SERVER['HTTP_HOST'] in PHP and there I get the value I expected. Also, the RewriteRule is working if I remove the If/Else statement.
I'm using Azure Webapp with Apache/2.4.38 (Debian)
Inside
ifandelseblock you can useRedirectMatchdirective as it works with it . RewriteRule doesn't work because it overrides and conflicts with IF/ELSE.