javascript - Backbone.js pushState is not working and gives a 404 error - Stack Overflow

I have been watching the screencast from PeepCode on Backbone.js, and have done the coding with it.I ha

I have been watching the screencast from PeepCode on Backbone.js, and have done the coding with it.

I have finished the first part and now, I have a Router like this:

routes: {
    '': 'home',
    'blank': 'blank'
}

and also I have this to start the App:

$(function(){
    window.App = new BackboneTunes();
    Backbone.history.start({pushState: true});
});

Now, if I type http://localhost:9292/#blank in the URL bar, it redirects me to http://localhost:9292/blank, but if I type http://localhost:9292/blank directly, it gives a 404 message.

Is this normal or do I have an error here?

Thanks in advance.

I have been watching the screencast from PeepCode on Backbone.js, and have done the coding with it.

I have finished the first part and now, I have a Router like this:

routes: {
    '': 'home',
    'blank': 'blank'
}

and also I have this to start the App:

$(function(){
    window.App = new BackboneTunes();
    Backbone.history.start({pushState: true});
});

Now, if I type http://localhost:9292/#blank in the URL bar, it redirects me to http://localhost:9292/blank, but if I type http://localhost:9292/blank directly, it gives a 404 message.

Is this normal or do I have an error here?

Thanks in advance.

Share Improve this question asked Sep 23, 2011 at 15:48 Omid KamangarOmid Kamangar 5,7889 gold badges43 silver badges70 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 8

For those that thought the above answer was insufficient: What you want to do is enable your server to reroute all urls to your index.html page where Backbone.js will take care of the routing for you. The following steps will let you do this while still keeping the URL the same inside the address bar.

If you're using Apache as your container, you need to enable a mod_rewrite module inside your application's .htaccess file.

Inside your httpd file:

1) Make sure that your "Override" mand for your document root is enabled to "Override All" instead of "Override None"

2) Enable the mod_rewrite.so module by unmenting this line:

LoadModule rewrite_module modules/mod_rewrite.so

Inside your application's .htaccess file (if you don't have one, create one):

1) If you have a IfModule mod_rewrite.c module already written, then copy these lines into one of the modules:

RewriteEngine On
RewriteRule ^/[a-zA-Z0-9]+[/]?$ /index.html [QSA,L]

You should have something that looks like this:

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteRule ^/[a-zA-Z0-9]+[/]?$ /index.html [QSA,L]
</IfModule>

Edit

Note: In Apache 2.2+, you can now use FallbackResource instead of mod_rewrite, it requires fewer lines and acplishes the same thing.

You need to set up your server to return the same page for all of the URLs that Backbone routes to. Right now, it's only serving the page from the root URL.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1742388108a4434469.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信