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

18 lines
408 B
ApacheConf
Raw 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
AddHandler cgi-script .fcgi
# No index.html or other things
DirectoryIndex extra.fcgi
RewriteEngine On
# Stop here if application is handling the request
RewriteCond %{REQUEST_URI} ^/extra\.fcgi
RewriteRule (.*) - [L]
# Extra application
RewriteRule (.*) /extra.fcgi/$1 [L,QSA,NS]