I'm almost done writing the .htaccess file to redirect some URLs to a new domain.
One final thing: I have URLs with this structure:
http://www.domain.be/?s=searchterm
How do I capture them?
RewriteRule ^\?s=(.*)$ http://newsubdomain.domain.be/?s=$1 [NC,L]
Any ideas?