.htaccess 341 B

1234567891011
  1. <IfModule mod_rewrite.c>
  2. RewriteEngine On
  3. RewriteBase /
  4. # 실제 파일이나 디렉토리가 아닌 경우 index.html로 리다이렉트
  5. RewriteCond %{REQUEST_FILENAME} !-f
  6. RewriteCond %{REQUEST_FILENAME} !-d
  7. RewriteCond %{REQUEST_URI} !^/_nuxt
  8. RewriteCond %{REQUEST_URI} !^/img
  9. RewriteRule ^.*$ /index.html [L]
  10. </IfModule>