Szukał tego samego rodzaju problemu. Skończyło się na użyciu kombinacji sugerowanych rozwiązań opisanych powyżej.
Po pierwsze, mam wiadro s3 z wieloma folderami, każdy folder reprezentuje stronę reagującą / reduxową. Używam również Cloudfront do unieważnienia pamięci podręcznej.
Musiałem więc użyć reguł routingu do obsługi 404 i przekierować je do konfiguracji skrótu:
<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>
W moim kodzie js musiałem obsługiwać go za pomocą baseName
konfiguracji routera reagującego. Przede wszystkim upewnij się, że twoje zależności są interoperacyjne, mam zainstalowane, z którymi history==4.0.0
był niezgodny react-router==3.0.1
.
Moje zależności to:
- „historia”: „3.2.0”,
- „reagować”: „15.4.1”,
- „React-redux”: „4.4.6”,
- „Reaguj router”: „3.0.1”,
- „React-router-redux”: „4.0.7”,
Utworzyłem history.js
plik do ładowania historii:
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;
Ten fragment kodu pozwala obsłużyć 404 wysłany przez serwer z mieszaniem i zastąpić je w historii ładowaniem naszych tras.
Możesz teraz użyć tego pliku do skonfigurowania sklepu i pliku głównego.
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;
Mam nadzieję, że to pomoże. Zauważysz, że w tej konfiguracji używam wtryskiwacza redux i wtryskiwacza homebrew sagas do asynchronicznego ładowania javascript przez routing. Nie przejmuj się tymi liniami.