使用SearchAction表单的schema.org微数据问题

时间:2015-06-02 01:06:56

标签: html forms get schema.org microdata

我尝试将meta放入myhtml代码

例如,我想为我的搜索引擎添加官方Google代码:

<div itemscope itemtype="http://schema.org/WebSite">
  <meta itemprop="url" content="https://www.example.com/"/>
  <form itemprop="potentialAction" itemscope itemtype="http://schema.org/SearchAction">
    <meta itemprop="target" content="https://query.example.com/search?q={search_term_string}"/>
    <input itemprop="query-input" type="text" name="search_term_string" required/>
    <input type="submit"/>
  </form>
</div>

这是我的问题。

我网站上的本地搜索引擎使用root url ...

例如http://example.com/obama

但是当我提交代码时代码完成了这样的事情:

http://example.com/?search_term_string=obama

如何删除'?search_term_string ='而不会对代码产生不良影响?

0 个答案:

没有答案