November 2018
Beginner
502 pages
10h 22m
English
If we visit the / route path, we'll notice that we get the Sorry, this page cannot be found message. Let's change this to redirect to "/products" when the path is /.
import { BrowserRouter as Router, Redirect, Route, Switch } from "react-router-dom";
<Switch> <Redirect exact={true} from="/" to="/products" /> <Route exact={true} path="/products" component={ProductsPage} /> <Route path="/products/:id" component={ProductPage} /> <Route path="/admin" component={AdminPage} /> <Route component={NotFoundPage} /></Switch>
Read now
Unlock full access