Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7903601
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T09:47:08+00:00 2026-06-03T09:47:08+00:00

Have done some working samples using Backbone Router, but is there a way to

  • 0

Have done some working samples using Backbone Router, but is there a way to protect the routes being used directly on the address bar? And also when the user press the back button on the browser, the routes doesn’t get cleared and creates issues. What is the best solution for this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T09:47:10+00:00Added an answer on June 3, 2026 at 9:47 am

    I think I see what you’re saying – you want to force the user to enter your site through a certain (home) page. Is that correct?

    This is useful, for example, when you’re building a mobile-optimized-web-app, and you always want users to enter through a splash screen. What I’ll do is set a ‘legitEntrance’ property to my router, and check for it on every route, as so:

    APP.Router = Backbone.Router.extend({
     legitEntrance: false,
    
     // Just a helper function
     setLegitEntrance: function() { 
      this.legitEntrance = true; 
     },
    
     // Send the user back to the home page
     kickUser: function() {
      this.navigate("home", {trigger:true});
     },
    
     routes : {
      ...
     },
    
     // Example router function: Home page
     routeToHome: function() {
      this.setLegitEntrance();
      var homeView = APP.HomeView.extend({ ... });
      homeView.render();
     },
    
     // Example router function: some other internal page
     routeToSomeOtherInternalPage: function() {
      if(!this.legitEntrance) {
       this.kickUser();
       return;
      }
    
      var someOtherInternalView = APP.SomeOtherInternalView.extend({ 
       ...
      });
    
      someOtherInternalView.render();
     }
    
     ....
    });
    

    I’m sure this code could be cleaned up some, but you get the general idea. Hope it helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

First of all, I have done some search yet found no working way. Anyway,
I'm trying to simulate some code that I have working with SQL but using
I am working on some test program for SpringData MongoDB , I have done
OK so I am working on some game logic, I have done a fair
I would appreciate some help with something I working on and have not done
i have done some code in jquery but where i commented in this bellow
I'm working on key handling in Javascript. I have done some research and I'd
Have done some research and found some stuff that may be helpful. I would
I have done some searches looking for information about how to do logging with
I have done some research, and majority of the examples I have found use

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.