Can't get subdomain to point to working collabNet server - what am I doing wrong?
- by Jared
Hello everyone,
I am running a web server using CollabNet SubVersion EDGE. You can view it at 71.13.105DOT51
I also run another website, http://www.tutorialcraft.com. I went into my Cpanel, and created a DNS record as follows:
svn.tutorialcraft.com. 14400 IN A 71.13.105.51
Yet, if you go to http://svn.tutorialcraft.com, it doesn't load.
I tested to see if I was doing some wrong, so I created a ebay.tutorialcraft.com and pointed it to eBay servers, and it worked fine (it's not up now).
Anyone have any ideas?
Thanks
UPDATE NOTES:
I tried to point svn.tutorialcraft.com to my original IP address (the one that www.tutorialcraft.com is pointed to, and it still won't load.
Also, may be worthy of note, I am running a wordpress multi-site server, and I have disabled blog redirection.
Here is a sample of my .htaccess as well:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^tutorialcraft\.com
RewriteRule (.*) http://www.tutorialcraft.com/$1 [R=301,L]
RewriteBase /
RewriteRule ^index\.php$ - [L]
# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule . index.php [L]