I need to have this URL
domain.com/var1/var2/?var3=
i.e (domain.com/jingle/bells/?id=3033)
to receive parameters this way
domain.com/?var1=&var2=&var3=
i.e. (domain.com/?title=jingle&subtitle=bells&id=3033)
On top of that is it possible to have infinite number of variables after var3? Like:
domain.com/?var1=&var2=&var3=&var4=&var5...
to be
domain.com/var1/var2/?var3=&var4=&var5...
Thank you!!