blob: 5ad514fbcbe707575eaeb74595bb0279bc9d7d8f (
plain)
1
2
3
4
5
6
7
8
9
10
|
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^[^\.]*$ index.py [QSA,L]
AddHandler mod_python .py
PythonHandler index
PythonDebug On
DirectoryIndex index.html index.htm index.py index.php
|