nginx位置与url /#

时间:2014-11-30 19:44:32

标签: backbone.js nginx

我使用骨干和nginx。我的位置如下:

    # will be handled with nginx
    location ~* ^/ {
        root /Users/myname/Projects/cms/source/cms;
        access_log off;
        expires max;            
    }

使用以下网址:

http://localhost/console.html  

使用以下网址失败并显示404:

http://localhost/console.html/#login

我尝试了以下内容:

location  ~* \/(#)$ {
location  ~* \(#)$ {

但是没有用。有什么建议吗?

更新 位置实际上是正确的。感谢mu清理它,它不是我的属性,而是尾随斜线。

1 个答案:

答案 0 :(得分:0)

位置实际上是正确的。感谢mu清理它,它不是我的属性,而是尾随斜线。