From da31fe93c41a135b062a7f41080048365250f28b Mon Sep 17 00:00:00 2001 From: miteruzo Date: Sat, 5 Jul 2025 02:00:25 +0900 Subject: [PATCH] #79 --- frontend/public/.htaccess | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 frontend/public/.htaccess diff --git a/frontend/public/.htaccess b/frontend/public/.htaccess new file mode 100644 index 0000000..1db6255 --- /dev/null +++ b/frontend/public/.htaccess @@ -0,0 +1,9 @@ + + RewriteEngine On + RewriteBase / + + RewriteCond %{REQUEST_URI} !^/api + RewriteCond %{REQUEST_FILENAME} !-f + RewriteCond %{REQUEST_FILENAME} !-d + RewriteRule ^ /index.html [L] +