2010-03-22 00:39:12 +01: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>
|
|
|
|
|
2010-07-29 01:54:20 +02:00
|
|
|
ErrorDocument 404 /assets/error-404.html
|
|
|
|
ErrorDocument 500 /assets/error-500.html
|
|
|
|
|
2010-08-31 03:59:41 +02:00
|
|
|
<IfModule mod_alias.c>
|
|
|
|
RedirectMatch 403 /silverstripe-cache(/|$)
|
|
|
|
</IfModule>
|
|
|
|
|
2010-03-22 00:39:12 +01:00
|
|
|
<IfModule mod_rewrite.c>
|
2010-10-20 04:41:35 +02:00
|
|
|
SetEnv HTTP_MOD_REWRITE On
|
2010-03-22 00:39:12 +01:00
|
|
|
RewriteEngine On
|
2010-10-20 04:41:35 +02:00
|
|
|
|
2010-03-22 00:39:12 +01:00
|
|
|
RewriteCond %{REQUEST_URI} ^(.*)$
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
RewriteRule .* sapphire/main.php?url=%1&%{QUERY_STRING} [L]
|
|
|
|
</IfModule>
|
|
|
|
### SILVERSTRIPE END ###
|