.htaccess
DirectoryIndex /handle_request.php
RewriteEngine On
# Redirect ALL requests to /handle_request.php
RewriteCond %{REQUEST_URI} !^/handle_request.php$
RewriteRule ^(.+)$ /handle_request.php [QSA,L]
DirectoryIndex /handle_request.php
RewriteEngine On
# Redirect ALL requests to /handle_request.php
RewriteCond %{REQUEST_URI} !^/handle_request.php$
RewriteRule ^(.+)$ /handle_request.php [QSA,L]