devon-pl/slim-image-resize/master/example/.htaccess - Htaccess File

devon-pl/slim-image-resize/master/example/.htaccess

RewriteEngine On
RewriteBase /

# Check for cached image in cache folder.
RewriteCond %{REQUEST_METHOD} ^GET$
RewriteCond %{DOCUMENT_ROOT}/cache/%{REQUEST_URI} -f
RewriteRule ^(.*)$ /cache/$1 [L,QSA]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]

On Github License

Files

Download PDF of Htaccess file
DOCUMENT_ROOT, GET, REQUEST_FILENAME, REQUEST_METHOD, REQUEST_URI

Comments

Apache