Hi!,

I've installed silverstripe CMS on my main domain. It comes with a .htaccess file with the following in it:

### SILVERSTRIPE START ###
<IfModule mod_dir.c>
DirectorySlash Off
</IfModule>

RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_URI} !(\.gif)|(\.jpg)|(\.png)|(\.css)|(\.js)|(\.php)$

RewriteCond %{REQUEST_URI} ^(.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* sapphire/main.php?url=%1&%{QUERY_STRING} [L]

### SILVERSTRIPE END ###

This configuration stops access to other folders on the domain such as my support system.

www.mydomain.com/support, currently forwards to silverstripes 404 error page.

Does anyone know how to modify the .htacces to allow me to access my support directory? I got close to it, but got a 500 error...