Here's the tip: you don't need to do a redirect actually.
Just have one vhost that handles both domains.
Just do an internal rewrite, and it will work.
Here's a mix of my own vhost (that handles domain.com and all *.domain.com) and what you'd like (this may not work 100% but hey I give you two hints after this):
<VirtualHost *>
ServerAdmin webmaster@domain.fr
DocumentRoot "/web/htdocs/domain/prod/website"
ServerName domain.com
ServerAlias *.domain.com
ErrorLog "/web/logs/domain.error.log"
CustomLog "|/opt/httpd/bin/rotatelogs /web/logs/domain/access_log.%Y-%m-%d-%H_%M_%S.log 5M" combined
# your RewriteRules ()
RewriteEngine On
# Trace:
# (!) file gets big quickly, remove in prod environments:
RewriteLog "/web/logs/domain.rewrite.log"
RewriteLogLevel 9
# Your RewriteRules ()
RewriteCond %{HTTP_HOST} ^wiki.domain.com$
RewriteRule ^/forum/(.*) /wiki/index.php?wiki/index$1 [QSA,L]
</VirtualHost>
Two hints:
If you're not in a hosted environment (= if it's your own server and you can modify the virtual hosts, not only the .htaccess files), try to use the RewriteLog directive: it helps you to track down such problems:
# Trace:
# (!) file gets big quickly, remove in prod environments:
RewriteLog "/web/logs/mywebsite.rewrite.log"
RewriteLogLevel 9
RewriteEngine On
My favorite tool to check for regexp:
http://www.quanetic.com/Regex (don't forget to choose ereg(POSIX) instead of preg(PCRE)!)