By bobr21
Hi,
I have a React app deployed on DO’s App Platform. I am using React Router and I’m experiencing problems with my routes. The only route working fine is home (‘/‘), which I’ve specified in the component’s routes on Digital Ocean panel. All the other routes work only when I’m navigating to them as a link from home. For example if I navigate to /xyz which is liked from the homepage, it works. But if I refresh I get a 404. Same if I try to navigate to /xyz directly.
Anyone can help?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Accepted Answer
Support for the catchall_document
field was released yesterday, so you can make use of this now instead of error_document
, and get 200 responses rather than 404s. Just be sure to upgrade to the latest doctl
in order to make use of it; we haven’t yet added support to the UI for configuring this field.
This comment has been deleted
@bobr21 👋
This is a great question, thanks for asking.
If you’re deploying a web service, then routing works as expected because it’s handling incoming traffic on all sub-routes. If you’re deploying a static site SPA, then you’ll only have the index.html
served to incoming requests to /
but not the sub-routes.
You can configure error_document: index.html
in your app spec, so that incoming traffic will be rewritten to index.html
while still maintaining the request path. The caveat with error_document
is that those requests will have the status code of 404, but the content will show your index document as expected. We’ll be introducing a new configuration called catchall_document
soon, that will solve this problem without that caveat; where the status code will be 200 instead of 404 while still rewriting as expected.
We currently don’t support configuring error_document
via the UI, so you’ll have to use doctl
and a custom spec YAML for now. Your app spec might look like something this:
name: sample-html
static_sites:
- name: site
github:
repo: digitalocean/sample-html
branch: master
error_document: index.html
You can then submit it using doctl
with:
doctl apps create --spec .do/app.yaml
After doing this, you can manage your app via the UI as usual, and your deploy-on-push configuration will continue working as expected.
Thanks for using the App Platform, and happy coding!
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.