From the WHM firewall settings can i redirect for example a IP to somewhere else? If i do not want this IP to come to my server and i send him to some affiliate page is that possible from the firewall settings?
Sorry noob when it comes to dedicated hosting where do i do that? Will that take server power or slow the server / website down?
Actually, the easiest way for you will be to use .htaccess: # permanently redirect specific IP request for single page RewriteEngine On RewriteBase / RewriteCond %{REMOTE_HOST} 123\.456\.789 RewriteRule .* /just-for-you.html [R=301,L] Code (markup):