I have a couple of urls like the following
www.mydomain.com/subfolder/file1.php?id=1&title=trust
I want this url to be like
www.mydomain.com/subfolder/title/1.htm
and then I have another url like
www.mydomain.com/subfolder/file1.php?hot=abc&map=india
I want this url to be like
www.mydomain.com/subfolder/title/abc/india.html
Remember there is a link between 1st url and 2nd url in that
www.mydomain.com/subfolder/title/1.htm
www.mydomain.com/subfolder/title/abc/india.html
The second url should come under the "title" directory created by the first url.
What RewriteRule will help me achieve this. I am in urgent need to this.
Please help