There is no way you as a user can determine the routes packets take. Indeed, it is possible for different packets of the same web page to take different routes and the packets are then re-assembled in the right order by your ISP. It all depends on how much congestion and the availability of networks to route through that determines the route individual packets take.
Bear in mind that the routers used on the Internet are a little more complicated than the routers you have at home or in your office. It is those that determine the route your packets take.
To give you an example of what can happen. Last year the main trans-Atlantic route between the USA and Europe went down for a few hours. The effected every Internet user in the UK wanting to connect to a site in the USA. It didn't stop them from connecting, just meant packets went by via Africa before crossing the Atlantic which made things just a little bit slower. ISPs just needed to adjust their routing tables until such time as the link was back up again
It is even possible for packets to go swanning around the Internet trying to find it's destination for ever. To prevent that from happening each TCP/IP packet has a parameter called TTL (Time To Live). This value is decremented every time the packet goes through a router on its way to its destination. It is usually set at 128 by the sender. If it ever decrements to zero the packet is dropped and is lost.
You ISP might have some control of the routing of packets, but even then, once the packet has left your ISPs network the routing is determined by the other networks the packets traverses.
An understanding of how the TCP/IP protocol works will make it all clear.
Stuart