I have a HTML form which looks like this:
<form action="process.php" method="get">
<input type="text" id="q" name="q" maxlength="16">
</form>
The process.php spits out some data, that's all working fine. When it has returned the data the URL looks like this:
website.com/process.php?q=banana
I would like to have a cleaner URL like this:
website.com/banana/
Is this possible using .htaccess? Thanks in advance!