Answers for "react redirect to another url"

5

react router external link

<Link to={{ pathname: "https://example.zendesk.com/hc/en-us/articles/123456789-Privacy-Policies" }} target="_blank" />
Posted by: Guest on September-04-2020
50

javascript redirect to another page

window.location.href = "http://mywebsite.com/home.html";
Posted by: Guest on July-18-2019
5

how to redirect a page to another url in html

<meta http-equiv="Refresh" content="0; url=https://www.w3docs.com" />
Posted by: Guest on April-10-2020
8

react redirect to url

import { Route, Redirect } from 'react-router'

<Route exact path="/" render={() => (
  loggedIn ? (
    <Redirect to="/dashboard"/>
  ) : (
    <PublicHomePage/>
  )
)}/>
Posted by: Guest on July-20-2020
-1

how to redirect to a website in react

window.location.href = 'http://domain.com';
Posted by: Guest on February-22-2021

Code answers related to "react redirect to another url"

Code answers related to "Javascript"

Browse Popular Code Answers by Language