Welcome to the JaguarPC Community
JaguarPC
Sales: (888) 338-5261
Support: (888)-551-3050
Results 1 to 4 of 4

This is a discussion on why my www does not go to the same place? in the VPS & Dedicated forum
why my www.mydomain goes to a different page. i had created a *.mydomain.com cname yesterday. i thought that would do it. is the wild card ...

  1. #1
    JPC Member
    Join Date
    May 2009
    Posts
    8

    why my www does not go to the same place?

    why my www.mydomain goes to a different page.

    i had created a *.mydomain.com cname yesterday. i thought that would do it. is the wild card going to do this or i need to make a www cname.

  2. #2
    JPC Member
    Join Date
    May 2009
    Posts
    8
    ok i took the furthur step of going to the httpd.include of my domain and added
    ServerAlias *.mydomain.com
    but it seems that i might have done something wrong. because i just changed the www.mydomain.com to *.mydomain.com
    will this work. do i have to do anything else?

  3. #3
    Community Leader jason's Avatar
    Join Date
    Sep 2001
    Location
    Rochester, NY
    Posts
    6,003
    I would suggest using the following:

    A. In your DNS:
    * A record for mydomain.com => your site's IP
    * CNAME or A record for www.mydomain.com (I prefer using an A record, but either will work)

    In Apache config:
    Code:
    <VirtualHost 12.34.56.78>
        ServerName mydomain.com
        ServerAlias www www.mydomain.com
        ...
    </VirtualHost>
    The actual syntax of your <VirtualHost> directive may vary based on your control panel, Apache version, etc. You should leave everything as it is, just making sure that your specify the server name and aliases appropriately.

    --Jason
    Jason Pitoniak
    Interbrite Communications
    www.interbrite.com www.kodiakskorner.com

  4. #4
    JPC Member
    Join Date
    May 2009
    Posts
    8
    thanks jason.got it

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •