welcome every body i want to redirct this links how i can do it http://game.paramegsoft.com/browse.php?c=2 i want to redirct to http://game.paramegsoft.com/category/2/2
Are you sure you don't want to do the opposite? If you want to redirect http://game.paramegsoft.com/browse.php?c=2 to http://game.paramegsoft.com/category/2/2 just do this <?php if(isset(GET['c'])) { header("location: http://game.paramegsoft.com/category".GET['c']."/".GET['c']); } ?>
Hey there, If you just want the .htaccess rewrite rule, you could go as simply as: RewriteRule ^browse.php\?c=(.*) http://game.paramegsoft.com/category/$1/$1 But you'd want to use local paths optimally so the redirect is internal. That's just preference, I guess. Hope this helps , Mike