如何更改 Drupal 中的 apache solr 搜索 URL?
如何将默认的 apache solr URL 路径 search/apachesolr_search/term
更改为其他路径?
How can I change the default apache solr URL path search/apachesolr_search/term
to something else?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个具有回调的菜单项:
$menu['search']['page callback'] = 'apachesolr_search_view';
这将使该 url 在返回时使用 apachesolr 搜索。
你想把它改成什么?
You can create a menu item that has the callback:
$menu['search']['page callback'] = 'apachesolr_search_view';
This will make that url use the apachesolr search as it's return.
What are you trying to change it to?