全站搜索写法 搜索 之前低版本都是这样写的,现在好像不行了
请教一下3.5版本的全站搜索写法
<form action="{SITE_URL}index.php" id="searchform" method="get">
<input name="c" type="hidden" value="so">
<input name="module" type="hidden" value="{MOD_DIR}">
<input type="text" class="form-control" placeholder="输入搜索关键字" name="keyword">
<button class="btn" type="submit">搜索</button>
</form>
之前低版本都是这样写的,现在好像不行了
<form action="{SITE_URL}index.php" id="searchform" method="get"> <input name="s" type="hidden" value="so"> <input name="module" type="hidden" value="{MOD_DIR}"> <input type="text" class="form-control" placeholder="输入搜索关键字" name="keyword"> <button class="btn" type="submit">搜索</button> </form>