medical-record-client/public/.htaccess

8 lines
221 B
ApacheConf

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