Initial commit with all files

This commit is contained in:
2025-05-02 12:48:13 +00:00
commit 1b8c572d89
29 changed files with 4100 additions and 0 deletions

20
.htaccess Normal file
View File

@@ -0,0 +1,20 @@
RewriteEngine On
# Rewrite /en/(.*) to /lang/en/$1
RewriteRule ^en/(.*)$ /lang/en/$1 [L]
# Rewrite /ru/(.*) to /lang/ru/$1
RewriteRule ^ru/(.*)$ /lang/ru/$1 [L]
# Rewrite /es/(.*) to /lang/es/$1
RewriteRule ^es/(.*)$ /lang/es/$1 [L]
# Rewrite / to /en/
RewriteRule ^/$ /en/ [L]
# Add MIME types for web fonts
AddType application/font-woff .woff
AddType application/font-woff2 .woff2
AddType application/x-font-ttf .ttf
AddType application/vnd.ms-fontobject .eot
AddType image/svg+xml .svg