# Reverse Proxy Configuration for demobackend.aibitsoft.cloud
# This configuration only affects this directory and does not impact other projects

RewriteEngine On

# Route all requests to index.php for proxying
# This ensures all requests go through the PHP proxy to Node.js backend
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]

