Can't get subdomain to point to working collabNet server - what am I doing wrong?

Posted by Jared on Server Fault See other posts from Server Fault or by Jared
Published on 2011-01-10T16:48:40Z Indexed on 2011/01/10 16:55 UTC
Read the original article Hit count: 242

Filed under:
|
|
|

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]

© Server Fault or respective owner

Related posts about apache

Related posts about server