e-org-extra-server/public_html/.htaccess

16 lines
393 B
ApacheConf
Raw Permalink Normal View History

2016-10-30 19:11:33 -07:00
# Force no Indexes in all cases
# Force ExecCGI
# FollowSymlinks for RewriteEngine
Options -Indexes +ExecCGI +FollowSymlinks
2016-10-30 19:11:33 -07:00
AddHandler wsgi-script .wsgi
2016-10-30 19:11:33 -07:00
# No index.html or other things
DirectoryIndex extra.wsgi
2016-10-30 19:11:33 -07:00
# Stop here if application is handling the request
RewriteCond %{REQUEST_URI} ^/extra\.wsgi
2016-10-30 19:11:33 -07:00
RewriteRule (.*) - [L]
# Extra application
RewriteRule (.*) /extra.wsgi/$1 [L,QSA,NS]