XBackBone/.htaccess

8 lines
291 B
ApacheConf
Raw Normal View History

2018-04-28 12:20:07 +00:00
Options -Indexes
2018-12-07 09:17:45 +00:00
<IfModule mod_rewrite.c>
RewriteEngine On
2020-04-13 14:46:53 +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]
</IfModule>