Announcement

Collapse
No announcement yet.

url dilema?

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

    url dilema?

    Hi

    i am aversion 8 user this is nothing really to do with a software issue.

    i have 3 domains with one company

    www.daydreamersfancydress.co.uk the main one, i also have a google page 1 url of www.islandentertainmentsonline.com which should be directing to the daydreamers url. anyway i ahev checked the dns settings and name servers on both and all correct however the www.islandentertainments url shows a really old page?

    any help appreciated on this.

    #Paul

    #2
    There is no redirect on the islandentertainments url.

    Mike
    -----------------------------------------

    First Tackle - Fly Fishing and Game Angling

    -----------------------------------------

    Comment


      #3
      I am aversion 8 user this is nothing . . .
      shouldn't this read
      I have an aversion to v8 which is nothing . . .

      Comment


        #4
        use a .htaccess file to give search engines a perminent redirect to www.daydreamersfancydress.co.uk so they don't even look at the old page but should keep the ranking.

        Create a .htaccess file with the below code, it will ensure that all requests coming in to domain.com will get redirected to www.newdomain.com
        The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)

        Options +FollowSymlinks
        RewriteEngine on
        rewritecond %{http_host} ^domain.com [nc]
        rewriterule ^(.*)$ http://www.newdomain.com/$1 [r=301,nc]

        Please REPLACE domain.com and www.newdomain.com with your actual domain name.

        Note* This .htaccess method of redirection works ONLY on Linux servers having the Apache Mod-Rewrite moduled enabled.
        There are other methods, just google ".htacess 301 redirect"

        regadrs
        Bangers
        Boxhedge New Media Design
        Design and development solutions for SME's.
        Tel: 0118 966 2786
        Examples of work can be found at http://www.boxhedge.com

        Comment

        Working...
        X