smart-classic/smart_sample_apps/master/rx_reminder/.htaccess - Htaccess File

smart-classic/smart_sample_apps/master/rx_reminder/.htaccess

<Files reminder.py>
    SetHandler wsgi-script
    Options ExecCGI FollowSymLinks
</Files>
<IfModule mod_rewrite.c>      
  RewriteEngine on
  RewriteBase /
  RewriteCond %{REQUEST_URI} !^/icons
  RewriteCond %{REQUEST_URI} !^/favicon.ico$
  RewriteCond %{REQUEST_URI} !^/smartapp/smart_manifest.json$
  RewriteCond %{REQUEST_URI} !^/smartapp/icon.png$
  RewriteCond %{REQUEST_URI} !^(/.*)+reminder.py/
  RewriteRule ^(.*)$ reminder.py/$1 [PT]
</IfModule>
AddType text/html py

On Github License

Files

Download PDF of Htaccess file
REQUEST_URI

Comments

Apache