我使用這種形式在我的網站如何直接向用戶發送mod-rewrite url表單?
<form id="search" action="/search.php" method="get">
<input type="text" onfocus="this.value='';this.style.color='black'" value="Search here" name="tag" id="search-text" />
<input type="image" src="/search-new.gif" alt="Search" id="search-submit" />
</form>
搜索時,我用它搜索我得到這樣
http://www.mysite.com/search.php?tag=query
一個URL,但我使用重寫規則在我的網站,我有網址這樣
http://www.mysite.com/search/query
這顯示了同樣的結果
我要的是,當用戶搜索 而不會顯示這個網址
http://www.mysite.com/search.php?tag=query
它應該顯示我重寫規則的網址
http://www.mysite.com/search/query
如何,我不能這樣做呢?
可能重複的[如何重寫這個簡單的url?](http://stackoverflow.com/questions/1616963/how-to-rewrite-this-simple-url) – Jakub