Is it posible to make a submit for disable websites in ISPConfig admin with a redirect to a custom page? Example submit: AliasMatch ^/.*$ /var/www/disabled/disabled.html It will be nice in the future..
Hi Falko, i'm use alway's the Apache Directives field in ISPConfig. I use: AliasMatch ^/.*$ /path/disabled/disabled.html And for hotlinking: <FilesMatch "\.(gif|jpe?g|png|bmp|pdf|zip|rar|mp3|js)$"> RewriteEngine on RewriteCond %{HTTP_REFERER} !^$ RewriteCond %{HTTP_REFERER} !^http://(www\.)?domain.tld [NC] RewriteCond %{REQUEST_FILENAME} !nohotlinking.gif$ RewriteRule .*\.(gif|jpe?g|png|pdf|bmp|pdf|zip|rar|mp3|js)$ http://domain2.tld/nohotlinking.gif [R] </FilesMatch> </Directory> </VirtualHost>