我有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]
但是没有用。
感谢。