In my .htaccess file I have defined following rule,
RewriteRule t/([^.]+)/$ /videos/tag.php?tag=$1 [QSA]
The above rule works fine if I am browsing http://example.com/videos/t/world+news/
or http://example.com/videos/t/events/
but when I am browsing http://example.com/videos/t/business+%26+world/
(here original tag is: business & world) then in my query string tag
variable I am getting only business. '& world' is not coming when I am fetching variable data through $_GET['tag']
Can anyone please tell where is the problem in the above rule??