Aynı tür bir sorun arıyordum. Yukarıda açıklanan önerilen çözeltilerin bir karışımını kullanarak sonuçlandırdım.
İlk olarak, birden fazla klasör içeren bir s3 kovam var, her klasör bir tepki / redux web sitesini temsil ediyor. Ayrıca önbelleği geçersiz kılmak için cloudfront kullanıyorum.
Bu yüzden 404'ü desteklemek ve bunları bir karma yapılandırmasına yönlendirmek için Yönlendirme Kurallarını kullanmak zorunda kaldım:
<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>
Benim js kodumda, baseName
tepki yönlendirici için bir yapılandırma ile işlemek gerekiyordu . Her şeyden önce, bağımlılıklarınızın birlikte çalışabilir olduğundan emin olun, ben history==4.0.0
uyumsuz olan yükledim react-router==3.0.1
.
Bağımlılıklarım:
- "geçmiş": "3.2.0",
- "tepki": "15.4.1",
- "tepki-redux": "4.4.6",
- "tepki yönlendirici": "3.0.1",
- "tepki-yönlendirici-redux": "4.0.7",
history.js
Geçmişi yüklemek için bir dosya oluşturdum :
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;
Bu kod parçası, sever tarafından gönderilen 404'ün bir karma ile işlenmesine ve rotalarımızı yüklemek için tarihte değiştirilmesine izin verir.
Artık bu dosyayı, mağazanızı ve Kök dosyanızı yapılandırmak için kullanabilirsiniz.
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;
Umarım yardımcı olur. Bu yapılandırmada, javascript'i yönlendirme yoluyla eşzamansız olarak yüklemek için redux enjektör ve homebrew sagas enjektör kullandığımı göreceksiniz. Bu çizgilere aldırmayın.