zaish 0 Newbie Poster

Hi Brothers,

I m completely new at PHP, I wants to learn URL Rewrting. I dont know anything about php.

I have 2 pages,
1)Index.php
2)cats.php

source code is for index.php is
<html>
<body>
<p><a href="http://www.example.com/cats.php?cat=1">category1</a></p>
<p><a href="http://www.example.com/cats.php?cat=2">category2</a></p>
<p><a href="http://www.example.com/cats.php?cat=3">category3</a></p>
<p><a href="http://www.example.com/cats.php?cat=4">category4</a></p>
<p><a href="http://www.example.com/cats.php?cat=5">category5</a></p>
<p><a href="http://www.example.com/cats.php?cat=6">category6</a></p>
</body>
</html>

and the source code for cats.php is

<html>
<body>
<?php
$txt=$_GET;
echo $txt;
?>
</body>
</html>
-----------------------------------------------------------------------------

I want to redirect
http://www.example.com/cats.php?cat=1
http://www.example.com/cats.php?cat=2
http://www.example.com/cats.php?cat=3

to

http:/www.example.com/cats/1
http://www.example.com/cats/2
http://www.example.com/cats/3

i have also updated .htaccess file by code provided by seochat.com from url rewriting code section

please tell me or provide me source files so i can make url rewriting. I will be very thank full if some one provide me source files so i can easily understand from that.