Inspirativ/eGift-Card-platform/master/.htaccess - Htaccess File

Inspirativ/eGift-Card-platform/master/.htaccess

<FilesMatch ".(tpl|log|csv)$">
    deny from all
</FilesMatch>

Options -Indexes

RewriteEngine on
Options +FollowSymlinks
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-d  
RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule ^([^.]*)$ /index.php?$1 [L]
RewriteRule ^images/captcha.jpg$ /index.php?captcha [L]

RewriteCond %{HTTPS} =on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^.]*)$ /index.php?$1 [L]
RewriteRule ^images/captcha.jpg$ /index.php?captcha [L]

On Github License

Files

Download PDF of Htaccess file
HTTPS, REQUEST_FILENAME

Comments

Apache