Simanta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.htaccess 304B

1234567
  1. RewriteEngine On
  2. # If an existing asset or directory is requested go to it as it is
  3. RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR]
  4. RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d
  5. RewriteRule ^ - [L]
  6. # If the requested resource doesn't exist, use index.html
  7. RewriteRule ^ /index.html