Initial commit: Static hotel website (CMS/backend excluded)

This commit is contained in:
Talal Sharabi
2025-12-17 13:34:35 +04:00
commit 2b0547b484
386 changed files with 29377 additions and 0 deletions

9
client/public/.htaccess Normal file
View File

@@ -0,0 +1,9 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>