Possible Duplicate:
How to show google.com in an iframe?
I am researching possible methods of running a proxy server for a school project.
I thought about using iframes to load a web page inside another web page, so I made a test.
Here is my HTML:
<html>
<body>
<IFRAME SRC="http://google.com" WIDTH=1024 HEIGHT=768>
Not loaded
</IFRAME>
</body>
</html>
However, http://google.com doesn't load, and instead the iframe remains white.
On further inspection, Google Chrome's GET request to load google.com has been cancelled.
I suspect that google stop people from loading their site in iframes, but why is this, and what are the effects of it?
Edit: I forgot to mention, other websites (like my own) work fine.