RewriteEngine On # Turn on the rewriting engine RewriteBase / #################### RewriteRule ^/?$ /index ############################################################################### ## ## ## CGI WRAPPER PER WSGI ## ## ## ############################ ## ## qualunque richiesta non statica viene passata a cgi/cgi_wrapper.py ## RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !^(/.*)+cgi_wrapper.py/? RewriteRule ^(.*)$ cgi/cgi_wrapper.py/$1 [QSA,L] ############################################################################### ## ## ## WSGI PURO ## ## ## ################# ## ## qualunque richiesta non statica viene passata a /dispatch_wsgi.py ## RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /dispatch_wsgi/$1 [QSA,L]