I've read just about every post in this thread. . .
My problem is when I go to
www.mysite.com/wiki it changes to mysite.com/wiki
Anyone else run into this?
Edit: OK, this solved it. In my .htaccess file I added.
HTML Code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www\.mysite\.org [NC]
RewriteRule ^(.*)$ http://www.mysite.org/wiki/$1 [L,R=301]
</IfModule>