CoffeeJack/ElderTracker/master/www/.htaccess - Htaccess File

CoffeeJack/ElderTracker/master/www/.htaccess

<IfModule mod_rewrite.c>
  RewriteEngine on
  
  RewriteRule web.config - [F,L]
  RewriteRule ^(.*)(device/[^/]+/)(min/.*)$ $1$3?_device=$2 [QSA,L]
  
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond %{REQUEST_URI} !=min/.*$
  RewriteCond %{REQUEST_URI} ^(.*)$
  RewriteRule ^(.*)$ index.php?_path=%1 [L,QSA]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME, REQUEST_URI

Comments

Apache