13
React-Router 외부 링크
react-router를 사용하여 반응 앱에서 내 경로를 처리하고 있기 때문에 외부 리소스로 리디렉션하는 방법이 있는지 궁금합니다. 누군가가 맞았다 고 말하십시오. example.com/privacy-policy 다음으로 리디렉션하고 싶습니다. example.zendesk.com/hc/en-us/articles/123456789-Privacy-Policies 내 index.html에서 일반 JS로 작성하는 것을 피하는 데 정확히 도움이되지 않습니다. if ( window.location.path === "privacy-policy" ){ window.location = "example.zendesk.com/hc/en-us/articles/123456789-Privacy-Policies" }