1

我尝试在我的网站内使用谷歌群组服务,虽然将此代码嵌入主页,但它返回 404 错误!是因为我使用的是 localhost 吗?

<iframe id="forum_embed"
  src="javascript:void(0)"
  scrolling="no"
  frameborder="0"
  width="900"
  height="700">
</iframe>
<script type="text/javascript">
  document.getElementById('forum_embed').src =
     'https://groups.google.com/forum/embed/?place=forum/*********'
     + '&showsearch=true&showpopout=true&showtabs=false'
     + '&parenturl=' + encodeURIComponent(window.location.href);
</script>
4

1 回答 1

2

是的,404 问题是因为您从localhost. 我在 Mac OS X 上使用内置的 Apache 服务器,遇到了完全相同的问题。将 HTML 文件上传到我的托管网站后,Google 网上论坛会正确显示。

于 2013-04-22T04:49:57.793 回答