How to make both links and images work in .htaccess
this is what i want
www.example.com/randomword --> /index/q1.php?encid=$1
www.example.com/anyname.jpg --> /index/img/q2.php?encid=$1
I tried this rewrite rule, but its not working
RewriteRule ^(.*)$ ./index/q1.php?encid=$1 [N,NC,QSA]
RewriteRule ^(.*\.(gif|jpg|png))$ ./index/img/q2.php?encid=$1 [L,NC,QSA]
When i used the links individually it works fine, but when i combine, its not working
I created two .htaccess files for each rewrite rule. One in main folder and another in sub directory and its working.
.htaccess
image/.htaccess