กำลังมองหาปัญหาแบบเดียวกัน ฉันลงเอยด้วยการใช้โซลูชันที่แนะนำที่อธิบายไว้ข้างต้น
ก่อนอื่นฉันมีที่เก็บข้อมูล s3 ที่มีหลาย ๆ โฟลเดอร์แต่ละโฟลเดอร์แสดงถึงเว็บไซต์ตอบสนอง / การเปลี่ยนเส้นทาง ฉันยังใช้ cloudfront สำหรับการทำให้แคชใช้ไม่ได้
ดังนั้นฉันจึงต้องใช้กฎการกำหนดเส้นทางเพื่อรองรับ 404 และเปลี่ยนเส้นทางให้เป็นแฮช config:
<RoutingRules>
<RoutingRule>
<Condition>
<KeyPrefixEquals>website1/</KeyPrefixEquals>
<HttpErrorCodeReturnedEquals>404</HttpErrorCodeReturnedEquals>
</Condition>
<Redirect>
<Protocol>https</Protocol>
<HostName>my.host.com</HostName>
<ReplaceKeyPrefixWith>website1#</ReplaceKeyPrefixWith>
</Redirect>
</RoutingRule>
<RoutingRule>
<Condition>
<KeyPrefixEquals>website2/</KeyPrefixEquals>
<HttpErrorCodeReturnedEquals>404</HttpErrorCodeReturnedEquals>
</Condition>
<Redirect>
<Protocol>https</Protocol>
<HostName>my.host.com</HostName>
<ReplaceKeyPrefixWith>website2#</ReplaceKeyPrefixWith>
</Redirect>
</RoutingRule>
<RoutingRule>
<Condition>
<KeyPrefixEquals>website3/</KeyPrefixEquals>
<HttpErrorCodeReturnedEquals>404</HttpErrorCodeReturnedEquals>
</Condition>
<Redirect>
<Protocol>https</Protocol>
<HostName>my.host.com</HostName>
<ReplaceKeyPrefixWith>website3#</ReplaceKeyPrefixWith>
</Redirect>
</RoutingRule>
</RoutingRules>
ในรหัส js ของฉันฉันต้องจัดการมันด้วยbaseName
config สำหรับ react-router ครั้งแรกของทั้งหมดให้แน่ใจว่าการอ้างอิงของคุณจะทำงานร่วมกันผมได้ติดตั้งชก็ไม่เข้ากันกับhistory==4.0.0
react-router==3.0.1
การพึ่งพาของฉันคือ:
- "ประวัติ": "3.2.0",
- "ตอบสนอง": "15.4.1",
- "react-redux": "4.4.6",
- "react-router": "3.0.1",
- "react-router-redux": "4.0.7",
ฉันได้สร้างhistory.js
ไฟล์สำหรับการโหลดประวัติ:
import {useRouterHistory} from 'react-router';
import createBrowserHistory from 'history/lib/createBrowserHistory';
export const browserHistory = useRouterHistory(createBrowserHistory)({
basename: '/website1/',
});
browserHistory.listen((location) => {
const path = (/#(.*)$/.exec(location.hash) || [])[1];
if (path) {
browserHistory.replace(path);
}
});
export default browserHistory;
รหัสชิ้นนี้อนุญาตให้จัดการ 404 ที่ส่งโดยเซิร์ฟเวอร์ด้วยแฮชและแทนที่ในประวัติสำหรับการโหลดเส้นทางของเรา
ตอนนี้คุณสามารถใช้ไฟล์นี้เพื่อกำหนดค่าร้านค้าของคุณและไฟล์รูทของคุณ
import {routerMiddleware} from 'react-router-redux';
import {applyMiddleware, compose} from 'redux';
import rootSaga from '../sagas';
import rootReducer from '../reducers';
import {createInjectSagasStore, sagaMiddleware} from './redux-sagas-injector';
import {browserHistory} from '../history';
export default function configureStore(initialState) {
const enhancers = [
applyMiddleware(
sagaMiddleware,
routerMiddleware(browserHistory),
)];
return createInjectSagasStore(rootReducer, rootSaga, initialState, compose(...enhancers));
}
import React, {PropTypes} from 'react';
import {Provider} from 'react-redux';
import {Router} from 'react-router';
import {syncHistoryWithStore} from 'react-router-redux';
import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider';
import getMuiTheme from 'material-ui/styles/getMuiTheme';
import variables from '!!sass-variable-loader!../../../css/variables/variables.prod.scss';
import routesFactory from '../routes';
import {browserHistory} from '../history';
const muiTheme = getMuiTheme({
palette: {
primary1Color: variables.baseColor,
},
});
const Root = ({store}) => {
const history = syncHistoryWithStore(browserHistory, store);
const routes = routesFactory(store);
return (
<Provider {...{store}}>
<MuiThemeProvider muiTheme={muiTheme}>
<Router {...{history, routes}} />
</MuiThemeProvider>
</Provider>
);
};
Root.propTypes = {
store: PropTypes.shape({}).isRequired,
};
export default Root;
หวังว่ามันจะช่วย คุณจะสังเกตเห็นการกำหนดค่านี้ฉันใช้ redux injector และ homebrew sagas injector สำหรับการโหลด javascript asynchrounously ผ่านเส้นทาง ไม่เป็นไรกับบรรทัดเหล่านี้