I have deployed react application on the subfolder of apache server
Url Folder: /var/www/html/abc
I have the following .htaccess rules to rewrite requests
RewriteEngine On
RewriteBase /abc
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /abc/index.html [L]
But it is not working Please help me to rewrite the .htaccess rules