ฉันรู้วิธีมีเซิร์ฟเวอร์ Python Bottle:
 
    import os
from bottle import route, template, default_app
os.chdir(os.path.dirname(__file__))
@route('/hello')
def hello():
    return template('Hello world')
application = default_app()
 
    รันด้วย WSGI กำหนดค่าเช่นนี้ด้วย Apache:
 
    <VirtualHost *:80>
  ServerName example.com
  <Directory />
    AllowOverride All
    Require all granted
  </Directory>
  WSGIScriptAlias / /var/www/wsgi_test/app.wsgi
</VirtualHost>
 
    เป็นไปได้ไหมที่จะทำการกำหนดค่า WSGI โดยตรงใน.htaccess ?