Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. # Disable cache
  2. <filesMatch "\.(html|htm|js|css)$">
  3. FileETag None
  4. <ifModule mod_headers.c>
  5. Header unset ETag
  6. Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
  7. Header set Pragma "no-cache"
  8. Header set Expires "Wed, 11 Jan 1984 05:00:00 GMT"
  9. </ifModule>
  10. </filesMatch>
  11. RewriteEngine on
  12.  
  13. # Angular routing
  14. <IfModule mod_rewrite.c>
  15.  
  16. RewriteEngine On
  17. RewriteCond %{REQUEST_FILENAME} !-d
  18. RewriteCond %{REQUEST_FILENAME} !-f
  19.  
  20. RewriteRule ^ index.html [L]
  21.  
  22. </IfModule>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement