The "Did you mean" suggestion link is constructed with a URL of /search-all?query= which is not the right path for home.html .
Even on the Drupal side, this introduces a dependency on the path of the frame containing index.php (in this case, /search-all ) as well as the parameter.
Try using a relative path or other approach to eliminate this dependency. Another solution would be to (as suggested in #379) construct the link inside a tag in index.php and home.html. The link would be different in each case.
The "Did you mean" suggestion link is constructed with a URL of
/search-all?query=
which is not the right path for home.html .Even on the Drupal side, this introduces a dependency on the path of the frame containing index.php (in this case, /search-all ) as well as the parameter.
Try using a relative path or other approach to eliminate this dependency. Another solution would be to (as suggested in #379) construct the link inside a tag in index.php and home.html. The link would be different in each case.