Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Favicon.ico on SSL

Status
Not open for further replies.

GeeWond3r

IS-IT--Management
Sep 5, 2003
65
US
I'm able to have my distinguished icon be bookmarked A OK, eXcePt for those SSL enabled sites. Is there any way to enable the favicon to show up when bookmarked w/ ssl's https:?
 
I've not tried this, but it's worth a go... Instead of something like this:

Code:
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">

try putting the full sitename and http protocol in:

Code:
<link rel="shortcut icon" href="[URL unfurl="true"]http://www.yourdomain.com/favicon.ico"[/URL] type="image/x-icon">
<link rel="icon" href="[URL unfurl="true"]http://www.yourdomain.com/favicon.ico"[/URL] type="image/x-icon">

and if that fails, try changing the "http" to "https"... I know it sounds like a classic poke-and-hope... but sometimes you just have to do that to find if things work or not ;o)

Hope this helps,
Dan
 
You might find the "http" references will cause a "Display non-secure items" warning (depending on the settings of your browser), so I'd suggest using the "https" reference.

Are other images caching? Some web servers don't allow browser caching of secure images / attachments. Just a thought.

Pete.


Web Developer & Aptrix / IBM Lotus Workplace Web Content Management (LWWCM) Specialist
w: e: Pete.Raleigh(at)lclimited.co.uk
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top