I have got this .htaccess file:
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ /index.php?prequest=$1 [L]
and that works fine, but how do i need to edit the rewrite rule to also attach the specified part of the message past the ?, does anyone know what needs to be done to get it to do that?
Just add the Query String Append flag, it will append the
?x=ypart of the original URL: