# ===========================================
# FLOWBOT DCI v3.0 - URL REWRITING
# ===========================================
# Routes all requests to index.php for clean URLs

RewriteEngine On
RewriteBase /Flowb0t_DCI/v2/public/

# If the request is not a file or directory, route to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
