My URL: www.example.com/index.php?fruit=banana&color=yellow&amount=2
It should be:
www.example.com/banana/yellow/2
-----> success
So why is it:
www.example.com/banana/2
-----> ERROR
.htaccess:
RewriteEngine On
RewriteRule ^/(.*)/(.*)/(.*)$ ./index.php?fruit=$1&color=$2&amount=$3 [NC,L]