Vanilla 1.1.5 is a product of Lussumo. More Information: Documentation, Community Support.
Help keep Vanilla free:"Is there a way I can make it work for BOTH domains? To keep everyone happy? Or just keep telling them, 'Well, guys, seconddomain is a *joke* so I can't *make* it work, okay?'"You could try adding something like this into an .htacess file in the root directory of your webspace:
RewriteEngine OnThat should redirect everyone who visits a page at seconddomain.com to the corresponding URL at www.firstdomain.com. I haven't tested this code, but I use something similar on one of my websites to solve a similar problem.
RewriteCond %{HTTP_HOST} ^(.*\.)*seconddomain.com$
RewriteRule (.*) http://www.firstdomain.com/$1 [R=301,L]
1 to 13 of 13