Results 1 to 4 of 4

Thread: Dynamic Ajax Content script - Redirect to index

  1. #1
    Join Date
    Feb 2006
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Dynamic Ajax Content script - Redirect to index

    Dynamic Ajax Content script
    http://www.dynamicdrive.com/dynamici...jaxcontent.htm

    Hello All,
    Quick question regarding the script listed above,
    I want to redirect users to my index page if they link directly to my external pages instead of accessing them correctly using the Dynamic Ajax Content script?

    Thanks for any help.
    Paul

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Bad link.
    Try:
    Code:
    <script type="text/javascript">
    function checkInAJAX() {
      var pageName = "file.html"; // The page name.  No paths.
      if(window.location.href.substr(window.location.href.indexOf("/")) == pageName) window.location.replace("/index.php");
    }
    </script>
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  3. #3
    Join Date
    Feb 2006
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Wow quick reply
    I will have a go

    Thanks

  4. #4
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Slight error: should be
    Code:
    if(window.location.href.substr(window.location.href.indexOf("/") + 1) == pageName)
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

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
  •