<Route path="/([0-9]{4})" component={Main} />
const location = useLocation();
const navigate = useNavigate();
const stationIdRegexp = new RegExp("^/[0-9]{4}");
useEffect(() => {
if(stationIdRegexp.test(location.pathname)) {
navigate("/");
}
});