ぼざクリ タグ広場 https://hub.nizika.monster
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.
 
 
 
 
 
 

17 lines
421 B

  1. <IfModule mod_headers.c>
  2. <FilesMatch "\.(css|js|jpg|png|webp|woff2?)$">
  3. Header set Cache-Control "max-age=31536000, public"
  4. </FilesMatch>
  5. </IfModule>
  6. <IfModule mod_rewrite.c>
  7. RewriteEngine On
  8. RewriteBase /
  9. RewriteCond %{REQUEST_URI} !^/api
  10. RewriteCond %{REQUEST_URI} !^/sitemap\.xml
  11. RewriteCond %{REQUEST_FILENAME} !-f
  12. RewriteCond %{REQUEST_FILENAME} !-d
  13. RewriteRule ^ /index.html [L]
  14. </IfModule>