# If you're running Apache web server you can use this file to improve the
# security of you Imagevue installation if you're using passwords
# just put this file to the gallery root folderrename this file to: 
#
# .htaccess (no extension)
#
# IT MUST BE LOCATED IN THE GALLERY ROOT FOLDER TO WORK
#
# This will prevent access to xml files which can be used to fish out the paths to images
#
# It might be a good idea to put the resulting .htaccess in the content/ folder
# Then it won't block all .xml files on the site if you need it. 

<FilesMatch ".*xml">
  Order allow,deny
</FilesMatch>

Options -Indexes

#########################################################################################

# Automatic language switch depending on the domain name
# You can uncomment the following and change site.com/site.de and languages according to your setup
# Make sure you're server has mod_rewrite enabled
# 
# RewriteEngine on

# RewriteCond %{SERVER_NAME} site\.de$ [NC]
# RewriteCond %{REQUEST_URI} ^/$ [NC]
# RewriteRule .* ?language=german [QSA]

# RewriteCond %{SERVER_NAME} site\.com$ [NC]
# RewriteCond %{REQUEST_URI} ^/$ [NC]
# RewriteRule .* ?language=english [QSA]
