I'm trying to setup a redirect so that any request to any page which ends in ?page_id gets redirected to the homepage of the site.
The following rule is placed within the htaccess file but it throws up an internal server error:
Code:
RewriteRule ^?page_id=(.*)$ /http://site.something.com [L,R=301]
Any ideas?