这是我的表格
<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
网址时,我会转到所需的页面。
请告诉我我错在哪里