pointing old domain at new domain and need to rewrite old domain urls like:
www.olddomain.com/index.php?flurgen=0&flurg=1
to:
www.mynewdomain.com/index.php?prev=1
i am totally new to mod rewrite and would love some help getting this straight before i add it to the existing .htaccess file on the new domain. Here’s what i have:
Options +FollowSymlinks
RewriteEngine on
RewriteCond %{HTTP_REFERER} olddomain.org [NC]
RewriteRule ^(.+)$ index.php?prev=1 [QSA]