bsod
da datmi mancava un pò quel “bel” blu elettrico, non credo servano commenti vero

mi mancava un pò quel “bel” blu elettrico, non credo servano commenti vero

Grosso problema del friuli è la perdita della lingua nazionale (la marilenghe), cioè il friulano. Ed ecco che mi viene un’idea per una ipotetica campagna pubblicitaria di sensibilizzazione sull’uso del friulano.
Prototipo di cartellone:

jo i tachi subit …
Yeah,
officially a member of the Breaking100 club!! (not for this blog of course, no banners here! but for some other sites)
As you can see, the logo is on the left …
Ecco la prima di una lunga serie di invenzioni.
Problema: Fumi? Non hai da accendere? Niente accendino?
No Problema: Ecco la sigaretta svedese, accensione facile ed immediata.
Contestazione: Ma lo zolfo non farà male?
Contro-contestazione: Bhè, perchè le sigarette fanno bene?!?
Foto d’esempio:

Come vedete il concetto è tanto semplice quanto incredibilmente ingegnoso, e adesso via alla commercializzazione … (per ulteriori informazioni ed acquisti lasciate un milione di dollari davanti casa mia)
I see lots of web sites that are using drupal cms, and most of them are not hiding the text files that the installation process leave in the root directory. This is not a problem in general, but if you use an old version of drupal maybe is better not to show the world the version you are using. Take a look at drupal.org changelog file (yes this site is supposed to be up of date;).
So I use this basic solution, note that I update drupal using cvs method so I hide also the CVS directories. Put this code in your .htaccess file after RewriteEngine on inside the IfModule mod_rewrite.c section:
RewriteRule ^(.*)CHANGELOG\.txt$ http://www.perdomani.net [R,L]
RewriteRule ^(.*)INSTALL\.mysql\.txt$ http://www.perdomani.net [R,L]
RewriteRule ^(.*)INSTALL\.txt$ http://www.perdomani.net [R,L]
RewriteRule ^(.*)MAINTAINERS\.txt$ http://www.perdomani.net [R,L]
RewriteRule ^(.*)CVS$ http://www.perdomani.net [R,L]
RewriteRule ^(.*)CVS/$ http://www.perdomani.net [R,L]
RewriteRule ^(.*)INSTALL\.pgsql\.txt$ http://www.perdomani.net [R,L]
RewriteRule ^(.*)LICENSE\.txt$ http://www.perdomani.net [R,L]
RewriteRule ^(.*)UPGRADE\.txt$ http://www.perdomani.net [R,L]
Modify to fix your needs and save the .htaccess file.
F.A.Q.
1 – Why you use tons of rules for every file and not something like ^(.*)\.txt$ ?
Mhh, I really don’t remember, maybe I have some text file I want to be accessible in the site.
2 – Why not just removing that text files?
I think that CVS import them on every update, so you have to remove the files many times.