2

我有 3 个 URL 都指向同一页面,例如:

www.example.com/index.php?q=8236894
www.example2.com/index.php?q=8236894
www.example3.com/index.php?q=8236894

因为查询字符串“q”都是一样的,我希望它们都加载同一个disqus线程。关于如何实现这一目标的任何想法?

4

2 回答 2

3

老线程,但我有同样的问题,所以我想我会分享我的解决方案!

pedrum golriz 提供的链接很有帮助。我们在这里实现了它:www.learnerds.com

在目标页面上,我们使用了以下代码:

<script>

var url = window.location.href;   \\ grabs the complete url with the query strings
var temp = new Array();  \\ creates an array that will store our values
temp = url.split('?');   \\ this function splits the url into 2 parts 
                         \\ temp[0] (everything before the question mark) & temp[1] (everything after the question mark)
disqus_url = temp[0];   \\sets the disqus_url to be the same regardless of query strings

</script>

你也可以用更少的代码行 window.location.href.split('?')[0] 。

希望有帮助!

于 2014-06-13T20:28:04.570 回答
0

在这里找到的 disqus 文档http://help.disqus.com/customer/portal/articles/472098-javascript-configuration-variables应该会有所帮助。

基本上,确保将 discus_* 变量设置为相同的值。此外,所有站点都需要添加到您的“受信任域”列表中(或者,列表必须为空)。

于 2013-10-29T13:25:02.780 回答