Currently I have my .htaccess file set up to redirect subdomains as follows:
http://foobar.domain.com redirects to http://domain.com/index.php?title=fooba ... uwiki_skin
These are the rules to accomplish that:
Code: Select all
RewriteCond %{HTTP_HOST} ^([^.]+)\.bluwiki\.com
RewriteRule (.*) /index.php?title=%1&useskin=bluwiki_skin [L]
http://foobar.domain.com/[b]test[/b] redirects to http://domain.com/index.php?title=foobar:[b]test[/b]&useskin=bluwiki_skin
Any ideas? Thanks!
