我正在使用react-router版本2.4.0
而我无法解决如果这样的路径
sari.yanti
实际上,这是用户将获得自己的页面及其用户名的用户名。但是我如何让react-router与这样的路径一起工作
答案 0 :(得分:0)
我通过将此添加到我的webpack dev服务器配置:
来解决 historyApiFallback: {
disableDotRule: true
}
或由此
devServer: {
proxy: {
'/*.*': { // Match all URL's with period/dot
target: 'http://localhost:8080/', // send to webpack dev server
rewrite: function(req){
req.url='index.html'; // Send to react app
}
}
} }