classify web

This commit is contained in:
Husanjonazamov
2026-02-24 12:52:49 +05:00
commit 64af77101f
310 changed files with 45449 additions and 0 deletions

15
.htaccess Normal file
View File

@@ -0,0 +1,15 @@
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^/.well-known/acme-challenge/(.*) /.well-known/acme-challenge/$1 [L]
RewriteRule ^_next/(.*) /.next/$1 [L]
# Allow access to static files with specific extensions
RewriteCond %{REQUEST_URI} \.(js|css|svg|jpg|jpeg|png|gif|ico|woff2)$
RewriteRule ^ - [L]
RewriteRule ^index.html http://127.0.0.1:8004/$1 [P]
RewriteRule ^index.php http://127.0.0.1:8004/$1 [P]
RewriteRule ^/?(.*)$ http://127.0.0.1:8004/$1 [P]
</IfModule>