I have this url: http://localhost/zina/Artist%20One%20Demo?l=8&m=10&c And it needs to become: http://localhost/?p=Artist%20One%20Demol=8&m=10&c&option=com_zina&Itemid=82
I am using this to rewrite the url:
RewriteRule ^zina/(.*)?(.*)$ /?p=$1&$2&option=com_zina&Itemid=82 [L,R]
However, I wind up with urls that look like this: http://localhost/?p=Artist%20One%20Demo/Title%20One&&option=com_zina&Itemid=82
In otherwords, $2 is not being matched with anything. Can anyone tell me why?