Quote:
Originally Posted by BirdOPrey5
This should work for favicons but I haven't tested...
Code:
<vb:if condition="$_SERVER['HTTP_HOST'] == 'www.domain1.com'">
<link rel="icon" type="image/png" href="/somewhere/myicon1.png" />
</vb:if>
<vb:if condition="$_SERVER['HTTP_HOST'] == 'www.domain2.com'">
<link rel="icon" type="image/png" href="/somewhere/myicon2.png" />
</vb:if>
<vb:if condition="$_SERVER['HTTP_HOST'] == 'www.domain3.com'">
<link rel="icon" type="image/png" href="/somewhere/myicon3.png" />
</vb:if>
...
and so on... You can do if-else statements but there is no reason to in the setup you described.
|
Upgraded to 4.1.4 and neither favicon suggestion works any longer