任何人都可以解釋我如何在搜索表單中重寫獲取請求。用mod重寫重寫GET請求?
這是我的形式
<form action="searchpage.php" method="get ">
<input type="text" name="search" placeholder="Search" required>
<button type="submit">Search</button>
</form>
的代碼,這是我在我的.htaccess
RewriteRule searchpage-search-(.*)\.html$ searchpage.php?search=$1 [L]
使用的線路,但這並不似乎工作。如果任何人都可以幫助我,這將是最感謝。
您是否真的想在用戶執行搜索請求時對用戶進行外部重定向?這似乎適得其反。 – Sumurai8