I want to make a rewrite module in htaccess file something like below
http://example.com/index.php?tel=604-567-0909&cat=1&sort=2
to
http://example.com/604-567-0909/?cat=1&sort=2
so $_GET
will be
$_GET[tel] = 604-567-0909
$_GET[cat] = 1
$_GET[sort] = 2
How would this rule look like?