A joomla site without sef url is showing %5C%22 between most of the url as per webmaster. Due to this the webmaster showing duplicate url
Duplicate url as showin in webmaster
http://www.xyz.com/%5C%22/index.php?option=com_newcar&view=price&Itemid=2
http://www.xyz.com/%5C%22/index.php?option=com_newcar&view=details&Itemid=2&id=41&vid=39
When clicked on them, url turns out to be :-
http://www.xyz.com/%5C"/index.php?option=com_newcar&view=price&Itemid=2
http://www.xyz.com/%5C"/index.php?option=com_newcar&view=details&Itemid=2&id=41&vid=39
Have tried several htaccess combinations
RewriteCond %{REQUEST_URI} ^.*/%5C%22.*$
RewriteRule .* index.php [R=301,L]
RewriteCond %{REQUEST_URI} ^.*/%5C".*$
RewriteRule .* index.php [R=301,L]
But unable to remove it
The correct urls are
http://www.xyz.com/index.php?option=com_newcar&view=price&Itemid=2
http://www.xyz.com/index.php?option=com_newcar&view=details&Itemid=2&id=41&vid=39
any suggestions