'issue with url parameters in htaccess

RewriteRule ^/pages/topic\.php?tag=$1 /topics/([^/]+) [R=301,L]

RewriteRule ^topics/([^/]+)/?$  /pages/topic.php?tag=$1 [END]

My problem is with the 301 redirect, I believe the problem is with the tag=$1 and /([^/]+) I'm not entirely sure I've done this correctly, My desired result is that when the user navigates to /pages/topic.php?tag=cryptocom that the user is then redirected to /topics/cryptocom/ Thanks for your help.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source