Answers for "htaccess file for reactjs"

2

reactjs .htaccess

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /subdirectory
    RewriteRule ^index\.html$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-l
    RewriteRule . /index.html [L]
</IfModule>
Posted by: Guest on January-29-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language