回答:
私が通常これを行った方法は、hook_menu_alter()を実装することです。その後、選択したとおりにURLをカスタマイズできます。
/**
* Implements hook_menu_alter().
*/
function example_menu_alter(&$menu) {
// Ensure Apache Solr is the default and that the menu item exists.
if (variable_get('apachesolr_search_make_default', 0) && isset($menu['search/apachesolr/%menu_tail'])) {
$menu['search/%menu_tail'] = $menu['search/apachesolr/%menu_tail'];
unset($menu['search/apachesolr/%menu_tail']);
}
}
apachesolr検索モジュールのみを使用している場合、検索パスを変更することは簡単ではありません。コア検索モジュールに依存しているため、パスはほぼハードコーディングされています。search / {module} /%menu_tailに依存します。search_view()、検索モジュールのコールバックを見ると、検索キーがパスの特定の部分にあることを期待するsearch_get_keys()を呼び出すことがわかります。apachesolr検索モジュールもこの関数を使用してキーを取得するため、単純なhook_menu_alter()の実装はそれ自体では機能しません。
ここで別の回答で言及したように、Views 3.xを実行できる場合、最善の策はapachesolr viewsモジュールを使用することです。このモジュールを使用すると、検索結果のカスタムパスをいくつでも簡単に定義できます。
3.xを実行できない場合は、フォーム変更(具体的にはsearch_form)とカスタムメニューコールバックの組み合わせを使用して、デフォルトの検索パスを正常に変更する必要があります。
これをsettings.phpに配置すると機能するはずです:
function custom_url_rewrite_outbound(&$path, &$options, $original_path) {
// Filter to get only the apache solr links with filters so it doesn't launch it for every link of our website
if ($path == 'search/apachesolr_search/' && strpos($options['query'], 'filters') !== FALSE) {
$new_path = $path.'?'.urldecode($options['query']);
// See if we have a url_alias for our new path
$sql = 'SELECT dst FROM {url_alias} WHERE src="%s"';
$row = db_result(db_query($sql, $new_path));
// If there is a dst url_alia, we change the path to it and erase the query
if ($row) {
$path = $row;
$options['query'] = '';
}
}
}
function custom_url_rewrite_inbound(&$result, $path, $path_language) {
// See if we have a url_alias for our new path
$sql = 'SELECT src FROM {url_alias} WHERE dst="%s"';
$row = db_result(db_query($sql, $path));
if ($row) {
// We found a source path
$parts = preg_split('/[\?\&]/', $row);
if (count($parts) > 1) {
$result = array_shift($parts);
// That's important because on my website, it doesn't work with the / at the end of result
if ($result[strlen($result) - 1] == '/') {
$result = substr($result, 0, strlen($result) - 1);
}
// Create the $_GET with the filter
foreach ($parts as $part) {
list($key, $value) = explode('=', $part);
$_GET[$key] = $value;
// Add this because the pager use the $_REQUEST variable to be set
$_REQUEST[$key] = $value;
}
}
}
}
次に、メニューエントリを作成するときに、apache solrへのリンクを配置します。search/ apachesolr_search /?filters = tid:13
そして、products / tv.htmlのようなsearch / apachesolr_search /?filters = tid:13のURLエイリアスを作成します
Evolving Webのスタッフによるhook_menuを使用したカスタム検索パスの追加をご覧ください。Solr検索用のわかりやすいURLを作成するためのカスタムモジュールの作成方法について説明します。おそらく少し調整する必要がありますが、それは良い出発点です。
search / apachesolr_search /を他の何か、たとえば 'inventory'に変更したいだけなら、グローバルリダイレクトモジュールを試すことができます。
トリックは、2つのエイリアスを作成することです。1つはsearch / apachesolr_search /(ファセットアイテム用)、もう1つは末尾スラッシュなし(メイン検索ページ用)です。グローバルリダイレクトは同じ宛先に対して2つのエイリアスの作成を拒否する場合がありますが、データベースに直接挿入できます。