Results 1 to 6 of 6

Thread: Webaddesses - joining?!
      
   

  1. #1
    lilprincess is offline Sergeant
    Join Date
    Sep 2008
    Location
    Right now Vienna/Austria
    Posts
    28

    Red face Webaddesses - joining?!

    I hope I get this right:

    Does anybody know how it is achieved that people typing in a different/wrong webpage still arrive at the correct destination?!

    Thanks!

  2. #2
    mrmagoo144's Avatar
    mrmagoo144 is offline Brigadier General
    Join Date
    Feb 2007
    Posts
    1,369

    Default Re: Webaddesses - joining?!

    devine intervention?

  3. #3
    lilprincess is offline Sergeant
    Join Date
    Sep 2008
    Location
    Right now Vienna/Austria
    Posts
    28

    Default Re: Webaddesses - joining?!

    LOL, yes that might work! But seriously - I SEE it work at other pages when I type something in incorrectly or a totally different address and get - redirected in some way - there HAS to be a way obviously!
    Anybody?!

  4. #4
    CarbonTerry's Avatar
    CarbonTerry is online now Major General
    Join Date
    Oct 2005
    Location
    St L MO
    Posts
    2,590

    Default Re: Webaddesses - joining?!

    You would need to own the "incorrect" addresses and then do a redirect from there.
    CarbonTerry
    Semper Fi
    Still green...still mean......just not as lean

    Red Hawk Archery
    Zone 5 Photo
    My USMC

  5. #5
    lilprincess is offline Sergeant
    Join Date
    Sep 2008
    Location
    Right now Vienna/Austria
    Posts
    28

    Default Re: Webaddesses - joining?!

    Ahhh, ok, thanks, Terry! And if I own how do I do it? ;o)

  6. #6
    CarbonTerry's Avatar
    CarbonTerry is online now Major General
    Join Date
    Oct 2005
    Location
    St L MO
    Posts
    2,590

    Default Re: Webaddesses - joining?!

    Google 301 redirect.

    or
    Implementing a 301 redirect for static pages

    First of all, you'll need to download the .htaccess file in the root directory of where all your web pages are stored. If there is no .htaccess file there, you can create one with Notepad or a similar application. Make sure when you name the file that you remember to put the "." at the beginning of the file name. This file has no tail extension.
    If there is a .htaccess file already in existence with lines of code present, be very careful not to change any existing line unless you are familiar with the functions of the file.
    Scroll down past all the existing code, leave a line space, then create a new line that follows this example:
    redirect 301 /old/old.htm http://www.you.com/new.htm
    It's as easy as that. Save the file, upload it back into your web and test it out by typing in the old address to the page you've changed. You should be instantly and seamlessly transported to the new location.
    Notes: Be sure not to add "http://www" to the first part of the statement - just put the path from the top level of your site to the page. Also ensure that you leave a single space between these elements:
    or
    Sometimes we want to redirect or cloak a url, the below code is very useful for these purposes.
    Quote:
    <META HTTP-EQUIV=Refresh CONTENT="0;URL=http://www.xxxxx.com">
    1) Open up a new BlueVoda page
    2) Right mouse click on the blank page and select Page HTML
    3) Insert the above code "Between Head Tag"
    4) Change the xxxxxxxxxx.com
    to your desired destination url
    5) Name, Save and Publish

    Another use of the above code is redirecting 404 error pages.

    1) Login to your control panel.
    2) Click Custom Error Pages
    3) Select 404 error
    4) Place the above code in the error box
    5) Change the xxxxxxxxx.com to the desired destination url
    6) Click save
    CarbonTerry
    Semper Fi
    Still green...still mean......just not as lean

    Red Hawk Archery
    Zone 5 Photo
    My USMC

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49