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>
|
|
|
|
|
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(/|$)
|
|
|
|
</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
|
|
|
|
RewriteRule .* sapphire/main.php?url=%1&%{QUERY_STRING} [L]
|
|
|
|
</IfModule>
|
|
|
|
### SILVERSTRIPE END ###
|