1

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]
Phil
  • 157,677
  • 23
  • 242
  • 245
Septian97
  • 19
  • 1

1 Answers1

0

Try this :

RewriteEngine On
RewriteRule ^/?([^/]+)/([^/]+)/([^/]+)/?$ ./index.php?fruit=$1&color=$2&amount=$3 [QSA,NC,L]

RewriteRule ^/?([^/]+)/([^/]+)/?$ ./index.php?fruit=$1&amount=$2 [QSA,NC,L]
Amit Verma
  • 40,709
  • 21
  • 93
  • 115