markdorison
markdorison

Reputation: 149184

How can I change the apache solr search URL in Drupal?

How can I change the default apache solr URL path search/apachesolr_search/term to something else?

Upvotes: 2

Views: 770

Answers (1)

mirzu
mirzu

Reputation: 1831

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?

Upvotes: 1

Related Questions