I have a rewrite rule for my site that passes everything after the domain name as a parameter:
RewriteRule ^([0-9a-zA-Z_=/&\-]+)?$ index.php?page=$1 [L,QSA]
But when going to:
mydomain.co.uk/mypage
..it is appending the query string after the URL (In the browser address bar) like this:
mydomain.co.uk/mypage?page=mypage
I thought it was just Chrome being weird... but it does it in IE aswell.
Has anyone ever had this? Any help would be great I just need it not to append the query string to the end and stay as "mydomain.co.uk/mypage"