I can't access my page (ReactJs)

I’m trying to access my page on https://www.ajudaaqui.ga/artigos/ganhar-dinheiro-online-2021 but it returns 404 error.

I’m using ReactJs to develop it and this is my .htaccess:

<files ~ “^.*.([Hh][Tt][Aa])”>
order allow,deny
deny from all
satisfy all

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

Options -Indexes

Options +FollowSymLinks -MultiViews RewriteEngine On RewriteBase / RewriteCond %{THE_REQUEST} [1]{3,}\s([^.]+).html [NC] RewriteRule ^ %1 [R,L] RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}.html -f RewriteRule ^(.*?)/?$ $1.html [L]


  1. A-Z ↩︎

2 posts were merged into an existing topic: Does ReactJS give 403 error?