kyleshike/nicky_wp/master/wp-content/themes/custom/.htaccess - Htaccess File

kyleshike/nicky_wp/master/wp-content/themes/custom/.htaccess

<IfModule mod_rewrite.c>
  Options -MultiViews
  RewriteEngine on
  RewriteCond %{HTTP_COOKIE} HTTP_IS_RETINA [NC]
  RewriteCond %{REQUEST_FILENAME} !@2x
  RewriteRule ^(.*).(gif|jpg|png)$ $1@2x.$2
  # if @2x isn't available fulfill the original request
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(.*)@2x.(gif|jpg|png)$ $1.$2
</IfModule>
AddType video/ogg .ogv
AddType video/mp4 .mp4
AddType video/webm .webm

AddType audio/mpeg .mp3
AddType audio/ogg .ogg
AddType audio/mp4 .m4a
AddType audio/wav /wav

On Github License

Files

Download PDF of Htaccess file
HTTP_COOKIE, REQUEST_FILENAME

Comments

Apache