2010-10-13 02:22:49 +00:00
|
|
|
### SILVERSTRIPE START ###
|
2014-11-19 08:31:04 +13:00
|
|
|
|
|
|
|
# Deny access to templates (but allow from localhost)
|
2010-10-13 02:22:49 +00:00
|
|
|
<Files *.ss>
|
|
|
|
Order deny,allow
|
|
|
|
Deny from all
|
|
|
|
Allow from 127.0.0.1
|
|
|
|
</Files>
|
|
|
|
|
2014-11-19 08:31:04 +13:00
|
|
|
# Deny access to IIS configuration
|
2010-10-13 02:22:49 +00:00
|
|
|
<Files web.config>
|
|
|
|
Order deny,allow
|
|
|
|
Deny from all
|
|
|
|
</Files>
|
|
|
|
|
2014-11-19 08:31:04 +13:00
|
|
|
# Deny access to YAML configuration files which might include sensitive information
|
2013-07-01 12:59:31 +12:00
|
|
|
<Files ~ "\.ya?ml$">
|
2012-12-13 09:02:56 +13:00
|
|
|
Order allow,deny
|
|
|
|
Deny from all
|
|
|
|
</Files>
|
|
|
|
|
2014-11-19 08:31:04 +13:00
|
|
|
# Route errors to static pages automatically generated by SilverStripe
|
2010-10-15 01:18:46 +00:00
|
|
|
ErrorDocument 404 /assets/error-404.html
|
|
|
|
ErrorDocument 500 /assets/error-500.html
|
|
|
|
|
2010-10-13 02:53:34 +00:00
|
|
|
<IfModule mod_rewrite.c>
|
2015-02-16 16:36:23 +00:00
|
|
|
|
|
|
|
# Turn off index.php handling requests to the homepage fixes issue in apache >=2.4
|
|
|
|
<IfModule mod_dir.c>
|
|
|
|
DirectoryIndex disabled
|
2017-02-02 21:03:09 +13:00
|
|
|
DirectorySlash Off
|
2015-02-16 16:36:23 +00:00
|
|
|
</IfModule>
|
|
|
|
|
2010-11-18 05:08:12 +00:00
|
|
|
SetEnv HTTP_MOD_REWRITE On
|
2014-11-19 08:31:04 +13:00
|
|
|
RewriteEngine On
|
2014-12-09 07:36:46 +13:00
|
|
|
|
2015-01-20 13:28:05 +13:00
|
|
|
# Enable HTTP Basic authentication workaround for PHP running in CGI mode
|
|
|
|
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
2017-02-02 21:03:09 +13:00
|
|
|
|
2014-11-19 08:31:04 +13:00
|
|
|
# Deny access to potentially sensitive files and folders
|
2017-01-30 17:19:55 +00:00
|
|
|
RewriteRule ^\.env - [F,L,NC]
|
2013-04-20 10:31:47 +03:00
|
|
|
RewriteRule ^vendor(/|$) - [F,L,NC]
|
|
|
|
RewriteRule silverstripe-cache(/|$) - [F,L,NC]
|
|
|
|
RewriteRule composer\.(json|lock) - [F,L,NC]
|
2017-02-19 11:10:21 +00:00
|
|
|
RewriteRule (error|silverstripe|debug)\.log - [F,L,NC]
|
2017-02-02 21:03:09 +13:00
|
|
|
|
2014-11-19 08:31:04 +13:00
|
|
|
# Process through SilverStripe if no file with the requested name exists.
|
|
|
|
# Pass through the original path as a query parameter, and retain the existing parameters.
|
2010-10-13 02:53:34 +00:00
|
|
|
RewriteCond %{REQUEST_URI} ^(.*)$
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
2012-11-09 09:59:14 +13:00
|
|
|
RewriteRule .* framework/main.php?url=%1 [QSA]
|
2017-02-02 21:03:09 +13:00
|
|
|
|
2014-11-19 08:31:04 +13:00
|
|
|
# If framework isn't in a subdirectory, rewrite to installer
|
2012-11-09 09:59:14 +13:00
|
|
|
RewriteCond %{REQUEST_URI} ^(.*)/framework/main.php$
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
RewriteRule . %1/install.php? [R,L]
|
|
|
|
|
2010-10-13 02:53:34 +00:00
|
|
|
</IfModule>
|
|
|
|
### SILVERSTRIPE END ###
|