我正在尝试使用开放式搜索定义来处理子域名。
我在html的<head>
中添加了正确的行。
示例:
<link rel="search" type="application/opensearchdescription+xml" title="Example" href="http://www.example.org/opensearch.xml" />
在opensearch.xml中:
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/" xmlns:moz="http://www.mozilla.org/2006/browser/search/">
<ShortName>Example</ShortName>
<LongName>Example Search</LongName>
<Description>Example Description</Description>
<InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16" type="image/x-icon">http://www.example.org/favicon.ico</Image>
<Url type="text/html" method="get" template="http://www.example.org/search/{searchTerms}" />
</OpenSearchDescription>
当我访问http://www.example.org时,搜索已正确添加到Google Chrome中的多功能框设置中。触发关键字变为“example.org”。
但是,当我访问<head>
中具有相同行的http://subdomain.example.org时,搜索会添加触发关键字“subdomain.example.org”而不是“example.org”。< / p>
有解决方法吗?
我在http://www.opensearch.org/Specifications/OpenSearch/1.1的文档中找不到有关如何设置触发关键字的任何信息。