Possible Duplicate:
Form Submit URL Formatting
I have simple form:
<form method="GET" action="http://{$smarty.server.SERVER_NAME}/recherche/">
<input type="text" name="s" value="Recherche" class="text" id="searchbox" />
<input type="submit" class="search" value="Rechercher !" title="Rechercher !" />
</form>
when I submit my form, the url brings me on:
http://mywebsite.com/recherche/?s=mysearch
but I rewrite the url properly like this:
# Recherche
RewriteRule ^recherche/([^/]*)$ /index.php?page=recherche&s=$1 [L]
but I do not know how to get on the right url (without the &s=) without redirection