使用 iframe 托管选项时,在 Drupal 中找不到 Google 自定义搜索引擎 (cse) 页面

发布于 2024-10-09 08:37:32 字数 349 浏览 1 评论 0原文

我在 Drupal 站点中使用 Google 的自定义搜索引擎。我正在使用 iframe 托管选项。我收到“找不到页面”错误。在这里尝试一下:http://www.babymed.com/search。 搜索“怀孕日历”。

如果我从查询字符串中取出生成的 url 的几个变量,只留下这些变量在 url 后面: ?cx=partner-pub-8269249097348173%253Ayqmzpr-2cr9&cof=FORID%253A10

我仍然没有得到任何结果。有 Google CSE 专家吗?

谢谢!

I'm using Google's custom search engine in a Drupal site. I am using the iframe hosting option. I get a Page Not Found error. Try it here: http://www.babymed.com/search.
Search for "Pregnancy Calendar".

If I take a couple variables of the resulting url out of the query string and leave only these trailing the url:
?cx=partner-pub-8269249097348173%253Ayqmzpr-2cr9&cof=FORID%253A10

I still don't get any results. Any Google CSE experts out there?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

灵芸 2024-10-16 08:37:32

您是否使用 Google CSE 模块,如果没有,我强烈建议您使用。默认情况下,Drupal 和 Google CSE 都使用 q GET 变量,这可能会导致问题。我上面链接的模块可以解决这个问题。

Are you using the Google CSE module, if not I strongly suggest it. By default Drupal and Google CSE both use the q GET variable which can causes problems. The module I linked to above takes care of that.

小矜持 2024-10-16 08:37:32

您可以将 Google CSE 模块用作 jhuebsch 提到,但问题的根源在于 Drupal 依赖于使用 q GET 参数来确定要提供的页面,而 Google CSE 使用它以确定搜索查询是什么。因此,发生的情况是搜索查询被发送到 Drupal,它显然无法找到您请求的页面。

因此,如果您想自己处理,请使用 Google CSE 的 as_q参数,就是为了处理这个问题而设计的。 Google CSE 模块包含此解决方法。

You can use the Google CSE module as jhuebsch mentioned, but the root of the problem is that Drupal depends on using the q GET parameter for determining what page to serve, while Google CSE uses it to determine what the search query is. So, what's occuring is the search query is being sent to Drupal, which obviously can't find the page you're requesting.

So, if you wanted to deal with it yourself, use Google CSE's as_q parameter, which was designed to deal with this problem. The Google CSE module incorporates this workaround.

独行侠 2024-10-16 08:37:32

问题在于 Drupal 将 q= 参数解释为页面名称。我使用 .htacces 重写来隐藏 PHP 搜索页面上的参数,从而隐藏 Drupal 中的参数。 Google CSE 在客户端运行,仍然会看到参数:

RewriteRule ^search$ index.php?q=search [L]

根据需要调整搜索页面名称(“搜索”)并将该行插入文件顶部。就是这样。无需模块。

The problem is that Drupal interprets the q= parameter as a page name. I use a .htacces rewrite to hide the parameter on the search page from PHP, and therefore, from Drupal. Google CSE runs client-side and will still see the parameter:

RewriteRule ^search$ index.php?q=search [L]

Adjust the search page name ("search") as neccessary and insert the line at the top of the file. That's it. No module required.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文