I want to convert url using GET method from
http://localhost/demo/index.php?keyword=sap&Submit=Search
TO
but i am getting problem in rewriting url i.e unable to rewrite url to
i have written my htaccess as
RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)$ index.php?keyword=$1
Please help me to get the proper htaccess code...
Thankyou
<form name="frmSearch" method="GET" action="">
<div class="input">
<label for="SearchKeyword">Search Results:</label>
<input name="keyword" id="SearchKeyword" type="text" value="<?php echo $_GET['keyword']; ?>">
</div>
<div class="submit">
<input value="Search" type="submit" name="Submit">
</div>
</form>