Hi Everyone, I have the follow RewriteRule in my htaccess file that works as it should
RewriteRule ^(.*)$ /product.php?pid=$1 [QSA,L]
If I wanted to add another product page would I just need to add
RewriteRule ^(.*)$ /productpage.php?ppge=$1 [QSA,L]
for the Rule to work correctly?
Thanks in advance