Please help me to solve the problem.I want to rewrite the url from
http://localhost/demo/index.php?keyword=sap
TO
but i am facing 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...
Thankyou
<?php
if( (isset($_GET['action'])) && ($_GET['action']=="add")){
$key=$_POST["keyword"];
?>
<script>self.location='index.php?keyword=<?=$key?>';</script>";
<?php
}
?>
<form name="frmSearch" method="POST" action="index.php?keyword=<?php echo $_POST['keyword']; ?>">
<div class="input">
<label for="SearchKeyword">Search Results:</label>
<input name="keyword" id="SearchKeyword" type="text" value="<?php echo $_POST['keyword']; ?>">
</div>
<div class="submit">
<input value="Search" type="submit" name="Submit">
</div>
</form>
<?php
//echo "GKEY".$_REQUEST['keyword'].$getKey;
if ($_GET['keyword'])
{
$key=$_GET["keyword"];
//taking data from database and displaying data
}
?>