I want to have two urls on this code at one account:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ([a-zA-Z0-9]+)$ test_a/index.php\?gr_id=$1
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ([a-zA-Z0-9]+)$ test_b/index.php\?gr_id=$1
</IfModule>
But this code is not working.
Let me know how can I make this work ?