.htaccess 606 B

12345678910111213141516171819202122232425262728293031
  1. <!-- Options +FollowSymLinks -Indexes
  2. IndexIgnore *
  3. DirectoryIndex
  4. <IfModule mod_rewrite.c>
  5. RewriteEngine on
  6. # gunakan port yg sesuai seperti diatas
  7. RewriteRule ^(.*)$ http://localhost:6969/$1 [P]
  8. </IfModule> -->
  9. <IfModule mod_rewrite.c>
  10. <IfModule mod_negotiation.c>
  11. Options -MultiViews -Indexes
  12. </IfModule>
  13. RewriteEngine On
  14. RewriteBase /
  15. RewriteRule ^index.html$ – [L]
  16. RewriteCond %{REQUEST_FILENAME} !-f
  17. RewriteCond %{REQUEST_FILENAME} !-d
  18. RewriteCond %{REQUEST_FILENAME} !-l
  19. RewriteRule . build/index.html [L]
  20. </IfModule>