1
0
Fork 0
mirror of https://github.com/24eme/signaturepdf synced 2024-05-17 21:26:34 +02:00
24eme-signaturepdf/vendor/fatfree/.htaccess

17 lines
511 B
ApacheConf
Raw Normal View History

2021-05-03 19:26:47 +02:00
# Enable rewrite engine and route requests to framework
RewriteEngine On
# Some servers require you to specify the `RewriteBase` directive
# In such cases, it should be the path (relative to the document root)
# containing this .htaccess file
#
# RewriteBase /
RewriteRule ^(app|tmp)\/|\.ini$ - [R=404]
RewriteCond %{REQUEST_FILENAME} !-l
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php [L,QSA]
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]