append and prepend script with apache

Sometimes we need to run a script in our localhost (or maybe in production) but we don’t want to edit our application to test the current environment. To solve this problem we can just add the file via apache virtual host configuration. So go on and edit your virtual host, and add this line to

htaccess redirect all subdomain except one

I needed a rule to redirect all subdomain in my domain except one specified subdomain, to do that I use those few lines in my .htaccess file [cc_bash] DirectoryIndex index.php RewriteEngine on RewriteCond %{HTTP_HOST} !noredirect.waltertavares.pt$ [NC] RewriteCond %{HTTP_HOST} (.*).waltertavares.pt$ [NC] RewriteRule ^(.*)$ http://waltertavares.pt/$1 [L,R=301] [/cc_bash] Of course you can skip redirection on a full list