我正在使用react路由器來定義路由。我正在使用create-react-app進行開發。我的問題是,如果我在地址欄中鍵入子頁面的url並嘗試訪問它在開發版本中工作,但不在生產版本中。React路由在facebook的create-react-app版本中不起作用
我使用AA簡單Express服務器託管的生產建設
var express = require('express'),
app = express(),
http = require('http'),
httpServer = http.Server(app);
app.use(express.static(__dirname + '/build'));
app.get('/', function(req, res) {
res.sendfile(__dirname + '/index.html');
});
app.listen(3001);
哪個URL?主要的一個 - yourdomain.com/或一個子頁面 - yourdomain.com/some/page/123? –
@HoriaComan子頁面 – Bhuthaya