如何使用URL ReWrite在2个favicons之间切换?

时间:2011-12-20 10:50:53

标签: .htaccess mod-rewrite apache2 favicon

我有2个ServerNames指向同一个项目。

  

testfirst.host.com testsesond.host.com

我希望每个域都能看到一个不同的图标:

  

第一个favicon.ico用于testfirst.host.com和第二个favicon.ico用于   testsecond.host.com

我试过了:

RewriteEngine On

RewriteCond %{HTTP_HOST}   ^testfirst.host.com
RewriteRule ^favicon\.ico  first-favicon.ico [L]

RewriteCond %{HTTP_HOST}   ^testsecond.host.com
RewriteRule ^favicon\.ico  second-favicon.ico [L]

但是没有用。

感谢。

0 个答案:

没有答案