使用nginx try_files配置使用react-router

时间:2015-12-30 08:59:52

标签: nginx react-router

我在项目中使用react-router,

正如文件所说,

我应该在nginx.conf中添加try_files

location / {
    root static/CKFM;
    try_files $uri $uri/ /index.html;
}
问题是,我有一个搜索页面,

我想让搜索网址有一个关键字参数,比如

/search/:keyword

当我访问url时:/search/some+words

路径/search/some+words也会尝试使用index.html文件。

enter image description here

认为js程序运行正常,

但我仍然得到Uncaught SyntaxError:意外的令牌<错误

enter image description here

enter image description here

如何解决?

0 个答案:

没有答案