silverstripe-installer/.htaccess

21 lines
362 B
ApacheConf
Raw Normal View History

### 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>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^(.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* sapphire/static-main.php?url=%1&%{QUERY_STRING} [L]
### SILVERSTRIPE END ###