Is it possibel to have a script setup that will display a full width banner across the top of a customers webpage. I would like to impliment this feature for select hosting plans, mainly the free, and affiliate plans I offer.
I once saw an apache module who was doing this, but this was more than 5 years ago, and I don't recall the name.
I tested this some time ago with Apache's mod_rewrite. Not sure if this is the code I used (I can not access my test server at the momen) Code: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME}!add.php RewriteRule ^(.*) /add.php </IfModule> You will need to code "add.php" to handle the banners.