2010-10-13 04:22:49 +02:00
|
|
|
### SILVERSTRIPE START ###
|
|
|
|
<Files *.ss>
|
|
|
|
Order deny,allow
|
|
|
|
Deny from all
|
|
|
|
Allow from 127.0.0.1
|
|
|
|
</Files>
|
|
|
|
|
|
|
|
<Files web.config>
|
|
|
|
Order deny,allow
|
|
|
|
Deny from all
|
|
|
|
</Files>
|
|
|
|
|
2012-12-12 21:02:56 +01:00
|
|
|
# This denies access to all yml files, since developers might include sensitive
|
|
|
|
# information in them. See the docs for work-arounds to serve some yaml files
|
|
|
|
<Files *.yml>
|
|
|
|
Order allow,deny
|
|
|
|
Deny from all
|
|
|
|
</Files>
|
|
|
|
|
2010-10-15 03:18:46 +02:00
|
|
|
ErrorDocument 404 /assets/error-404.html
|
|
|
|
ErrorDocument 500 /assets/error-500.html
|
|
|
|
|
2010-10-15 03:19:01 +02:00
|
|
|
<IfModule mod_alias.c>
|
|
|
|
RedirectMatch 403 /silverstripe-cache(/|$)
|
2013-02-15 19:13:41 +01:00
|
|
|
RedirectMatch 403 /vendor(/|$)
|
|
|
|
RedirectMatch 403 /composer\.(json|lock)
|
2010-10-15 03:19:01 +02:00
|
|
|
</IfModule>
|
|
|
|
|
2010-10-13 04:53:34 +02:00
|
|
|
<IfModule mod_rewrite.c>
|
2010-11-18 06:08:12 +01:00
|
|
|
SetEnv HTTP_MOD_REWRITE On
|
2010-10-13 04:53:34 +02:00
|
|
|
RewriteEngine On
|
2010-11-18 06:08:12 +01:00
|
|
|
|
2010-10-13 04:53:34 +02:00
|
|
|
RewriteCond %{REQUEST_URI} ^(.*)$
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
2012-12-04 02:34:54 +01:00
|
|
|
RewriteCond %{REQUEST_URI} !\.php$
|
2012-11-08 21:59:14 +01:00
|
|
|
RewriteRule .* framework/main.php?url=%1 [QSA]
|
|
|
|
|
|
|
|
RewriteCond %{REQUEST_URI} ^(.*)/framework/main.php$
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
RewriteRule . %1/install.php? [R,L]
|
|
|
|
|
2010-10-13 04:53:34 +02:00
|
|
|
</IfModule>
|
|
|
|
### SILVERSTRIPE END ###
|