XBackBone/.htaccess

9 lines
314 B
ApacheConf
Raw Permalink Normal View History

2021-08-15 19:33:44 +00:00
Options -Indexes +SymLinksIfOwnerMatch
2018-12-07 09:17:45 +00:00
<IfModule mod_rewrite.c>
RewriteEngine On
2020-04-13 15:10:17 +00:00
RewriteRule ^(app|bin|bootstrap|resources|storage|vendor|logs|CHANGELOG.md)(/.*|)$ - [NC,F]
2018-12-07 09:17:45 +00:00
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [QSA,L]
2021-08-15 19:33:44 +00:00
</IfModule>