hello,
i would like to add a feature into the SilverStripe htaccess, but my htaccess experience is limited.. resulting in internal server errors ;)
https://github.com/Retina-Images/Retina-Images/blob/master/.htaccess
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
# Option 1 (default)
# ==================
# Use this if your website runs in the root of the domain.
# i.e. http://example.com/index.html
#
RewriteBase /
RewriteRule \.(?:jpe?g|gif|png|bmp)$ /retinaimages.php [L]
# Option 2
# ==================
# Use this if your website runs in a sub-directory.
# i.e. http://example.com/website/directory/index.html
#
#RewriteBase /website/directory
#RewriteRule \.(?:jpe?g|gif|png|bmp)$ /website/directory/retinaimages.php [L]
</IfModule>
how do i add that into the default htaccess?
### 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>
ErrorDocument 404 /assets/error-404.html
ErrorDocument 500 /assets/error-500.html
<IfModule mod_alias.c>
RedirectMatch 403 /silverstripe-cache(/|$)
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^(.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* sapphire/main.php?url=%1&%{QUERY_STRING} [L]
</IfModule>
### SILVERSTRIPE END ###