Intro
When I develop automation tool based on phantomjs, it can not open some https website, so I spend some time to figure out how to solve this strange problem.
Solution 1
You can use the command option --ignore-ssl-errors=true
of phantomjs to make it ignore the ssl error, so it can load the page
Solution 2
Solution 1 can indeed solve the problem but it can not make sure ...