YunYinORG/find/master/.htaccess - Htaccess File

YunYinORG/find/master/.htaccess

<Files app.py>
    SetHandler wsgi-script
    Options ExecCGI FollowSymLinks
</Files>
<IfModule mod_rewrite.c>      
  RewriteEngine on
  RewriteBase /
  RewriteCond %{REQUEST_URI} !^/favicon.ico$
  RewriteCond %{REQUEST_URI} !^(/.*)+app.py/
  RewriteCond %{REQUEST_URI} !^/static/
  RewriteRule ^(.*)$ app.py/$1 [PT]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_URI, static

Comments

Apache