1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/.htaccess

9 lines
239 B
ApacheConf
Raw Normal View History

2015-06-15 19:04:41 +02:00
<IfModule mod_rewrite.c>
RewriteEngine On
2015-06-16 13:40:04 +02:00
RewriteRule "^.env" - [F,L]
RewriteRule "^storage" - [F,L]
2015-12-13 21:12:54 +01:00
# https://coderwall.com/p/erbaig/laravel-s-htaccess-to-remove-public-from-url
# RewriteRule ^(.*)$ public/$1 [L]
2015-06-15 19:04:41 +02:00
</IfModule>