# Abschalten: cgi, SSI, Auflisten von Inhalten
Options -ExecCGI -Includes -Indexes

# Ausfuehren von php unterbinden
<IfModule mod_php8.c>
	php_flag engine off
</IfModule>
<IfModule mod_php7.c>
	php_flag engine off
</IfModule>
<IfModule mod_php5.c>
	php_flag engine off
</IfModule>

# Nur Bild-Dateien sind erlaubt, alle anderen sind nicht lesbar
order deny,allow
deny from all
<Files ~ ".+\.(jpg|jpeg|png|JPG|JEPG|PNG)$">
	allow from all
</Files>

# moeglichst keine Suchmaschinen-Indexierung von Gastfotos
<FilesMatch "\.(jpg|jpeg|png|JPG|JEPG|PNG)">
	Header set X-Robots-Tag "noindex"
</FilesMatch>