这是我的表格
<form name="form1" action="<?php echo JRoute::_('index.php?option=com_mycomponent&task=search')?>" method="get">
<input id="search_key" name="searchword" type="text" class="inputbox" placeholder="Enter Keyword/Part Number..." autocomplete="off">
<input type="submit" class="inputbutton" value="Search">
</form>
输入任何关键字后说'test', 它重定向到 index.php?searchword = test
但我需要将其重定向到index.php?option=com_mycomponent&task=search&searchword=test
它在sef启用/禁用
中无效当我在网址中输入index.php?option=com_mycomponent&task=search&searchword=test
时,我会转到所需的页面。
请告诉我我哪里错了
答案 0 :(得分:2)
你可以尝试改变:
<form name="form1" action="<?php echo JRoute::_('index.php')?>" method="get">
到
<form name="form1" action="<?php echo JRoute::_('index.php')?>" method="get">
<input type="hidden" name="option" value="com_mycomponent">
<input type="hidden" name="task" value="search">