Report this

What is the reason for this report?

When I write the Sub Page Link To Browser It gives 404 Error

Posted on March 17, 2021

I am hosting a static React page on Digital Ocean. I have sub pages in my site. I can reach the links via navbar but when I copy and paste the link site gives 404 error. For example when I write: https://abc.com/xyz to the browser it gives 404 but I can reach the exact same link when I click to Navbar list item. And also in localhost it works perfectly fine.

How can I fix it?



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!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi there,

I could suggest using the following .htaccess rules:

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteBase /
  RewriteRule ^index\.html$ - [L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_FILENAME} !-l
  RewriteRule . /index.html [L]
</IfModule>

Note that you would need to enable AllowOverride in your Apache virtual host:

    <Directory "/var/www/html/">
            Options Indexes FollowSymLinks
            AllowOverride all
            Require all granted
    </Directory>

Let me know how it goes! Regards, Bobby

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.