Announcement

Collapse
No announcement yet.

SSL setup for 1and1 with multiple domains

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    SSL setup for 1and1 with multiple domains

    Help appriciated

    I have a site that has multple in bound links

    for example

    http://www.domain.co.uk/acatalog/pen.html

    goes to the same page as

    http://www.domain.com/acatalog/pen.html

    I have a dedicated SSL cert for www.domain.co.uk

    but in ie7 when someone lands on www.domain.com/acatalog/pen.html and goes into the SSL (.co.uk) checkout pages Windows reports that a fraud attemp is going on do you want to proceed.

    Whats the best way to resolve this can i buy a certification that covers all my domains or do i need to use 1and1 shared SSL

    help and any configuration tips appriciated

    Mike

    #2
    further to the above -modify the inbound url

    any suggestions for modify the inbound url so

    connecting for the inbound link www.domain.com/acatalog/pen.html

    result in the domain being modified to www.domain.co.uk/acatalog/pen.html

    also appriciated

    thanks in advance

    Mike

    Comment


      #3
      you need to use a 301 redirect from the non secured URL to the secured URL.

      this then keeps all traffic on the secured URL

      301 instead of alias

      Comment


        #4
        would this suit

        Thanks for your reply jo, will the following do the trick

        .htaccess
        Redirect 301 / http://www.domain.co.uk/

        thanks M

        Comment


          #5
          Think this will do the job

          Thanks for you lead Jo if applied the following code to the .htaccess code and it seems to do the trick

          .htaccess
          RewriteEngine On
          RewriteBase /
          RewriteCond %{HTTP_HOST} !domain.co.uk$ [NC]
          RewriteRule ^(.*)$ http://www.domain.co.uk/$1 [L,R=301]

          it achieve the goal of rewriting the URL so that


          established inbound links
          www.domain.com/acatalog/pen.html

          were redirected to my Dedicated SSL url

          www.domain.co.uk/acatalog/pen.html

          Any thoughts as to weather this will diminise my SEO standing appriciated but for now it looks like the best fix

          thanks M

          Comment


            #6
            it will help your seo standing as prior to this change the search engines would have seen them as two sites and therefore duplicate content. 301 is the way to go in this situation every time.

            Comment

            Working...
            X