end-user
end-user

Reputation: 2947

file:// protocol not working under ssl?

I have a link to a shared mapped drive and I can confirm that the link is good, but the browser's ignoring the click. Can someone confirm that browsers ignore file:/// href's when they appear on a secure page?

Upvotes: 0

Views: 352

Answers (2)

end-user
end-user

Reputation: 2947

Ok, so the issue is that it's explicitly being denied. The rule is: no access to resources via file:// from a page received via http[s]://. It's a separation of security realms. It's also more clearly defined by a mozilla plugin.

Upvotes: 0

Jukka K. Korpela
Jukka K. Korpela

Reputation: 201598

The file:// pseudo-protocol is for system-dependent access to files on a local system. It has nothing to do with SSL.

Upvotes: 1

Related Questions