.htaccess 542 B

123456789101112131415161718
  1. <IfModule mod_rewrite.c>
  2. RewriteEngine On
  3. RewriteBase /
  4. RewriteRule ^index\.html$ - [L]
  5. RewriteCond %{REQUEST_FILENAME} !-f
  6. RewriteCond %{REQUEST_FILENAME} !-d
  7. RewriteCond %{REQUEST_FILENAME} !-l
  8. RewriteRule . /index.html [L]
  9. </IfModule>
  10. # php -- BEGIN cPanel-generated handler, do not edit
  11. # Set the “ea-php56” package as the default “PHP” programming language.
  12. <IfModule mime_module>
  13. AddHandler application/x-httpd-ea-php56___lsphp .php .php5 .phtml
  14. </IfModule>
  15. # php -- END cPanel-generated handler, do not edit