„SparkleShare creates a special folder on your computer. You can add remotely hosted folders (or „projects“) to this folder. These projects will be automatically kept in sync with both the host and all of your peers when someone adds, removes or edits a file.“
1 2 3 4 5 |
<Files filename> Order Deny,Allow Deny from All Allow from YourIP </Files> |
1 2 3 4 5 |
<FilesMatch ".*"> Order Deny,Allow Deny from All Allow from YourIP </FilesMatch> |
1 2 3 4 5 6 |
<Files filename> AuthName "Admin-Section" AuthType Basic AuthUserFile .htpasswd require valid-user </Files> |
1 2 3 4 |
<FilesMatch "(.htaccess|.htpasswd|filename.php|readme.html)"> order deny,allow deny from all </FilesMatch> |
1 2 3 4 5 |
order deny,allow deny from all <files ~ ".(xml|css|jpe?g|png|gif|js)$"> allow from all </files> |
1 |
Options All -Indexes |
1 2 3 4 |
RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http(s)?://(www.)?YourDomain [NC] RewriteRule .(jpg|jpeg|png|gif)$ - [NC,F,L] |