Here is my .htaccess file
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteRule subpage\?sid /index.php [R=301,L,NC]
My request is http://example.com/subpage?sid
It keeps returning 404 Not Found, rather than redirecting to index.php
I have tried not escaping the ? and changing the request to http://example.com/subpage\?sid
I have tried loads of things to try get this working but am now stumped.