Detect active url then autonavigate to subdir

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Hans Hasenack

    Detect active url then autonavigate to subdir

    This is the problem:
    I've got a home dir home.provider.n l/username

    and two registered domains www.firsturl.nl and www.nexturl.nl
    These are both pointing to the same home directory

    How can I (automatically) switch to another page based upon the url used for
    navigating to my home directory.

    some Restrictions
    * must be javascript or DHTML.
    * cannot be ASP
    * I cannot change the registerd domains to use a sub directory of my home
    dir, only the 'root' of my home dir

    TIA

    Hans

    Res


  • kaeli

    #2
    Re: Detect active url then autonavigate to subdir

    In article <4098028b$0$124 $3a628fcd@reade r3.nntp.hccnet. nl>,
    h.remthishasena ck@hccnet.nl enlightened us with...[color=blue]
    > This is the problem:
    > I've got a home dir home.provider.n l/username
    >
    > and two registered domains www.firsturl.nl and www.nexturl.nl
    > These are both pointing to the same home directory
    >
    > How can I (automatically) switch to another page based upon the url used for
    > navigating to my home directory.
    >
    > some Restrictions
    > * must be javascript or DHTML.[/color]

    Why?
    This is best (easiest, simplist, and doesn't require anything from the
    client) done via server redirects. Anything else might not work on some
    browsers.
    Do you have Apache .htaccess available? If you don't know, ask your host
    or provide your host URL. Even a php script is preferable to a client-
    side script for something this integral to site functioning.

    If you insist on client-side, look at meta refresh tags, but be aware
    they are blockable/disabled on some browsers, including IE6.

    --
    --
    ~kaeli~
    Suicide is the most sincere form of self-criticism.



    Comment

    • Shawn Milo

      #3
      Re: Detect active url then autonavigate to subdir

      "Hans Hasenack" <h.remthishasen ack@hccnet.nl> wrote in message news:<4098028b$ 0$124$3a628fcd@ reader3.nntp.hc cnet.nl>...[color=blue]
      > This is the problem:
      > I've got a home dir home.provider.n l/username
      >
      > and two registered domains www.firsturl.nl and www.nexturl.nl
      > These are both pointing to the same home directory
      >
      > How can I (automatically) switch to another page based upon the url used for
      > navigating to my home directory.
      >
      > some Restrictions
      > * must be javascript or DHTML.
      > * cannot be ASP
      > * I cannot change the registerd domains to use a sub directory of my home
      > dir, only the 'root' of my home dir
      >
      > TIA
      >
      > Hans
      >
      > Res[/color]



      Try this:

      //make window.location into a string
      var currentURL = '' + window.location ;

      if (currentURL.mat ch('firsturl')) {
      window.location = 'http://www.google.com' ;
      }else{
      window.location = 'http://www.yahoo.com';
      }


      This works for me in IE6 and Mozilla Firefox.

      Shawn

      Comment

      Working...