xampp windows Come creare il file .htaccess
The english version of how to create the .htaccess file in xampp windows is at bottom.
Oggi abbiamo dovuto creare il file .htaccess in windows per una applicazione che stiamo testando con xampp, ma c’è voluto un attimo di meditazione per come crearlo.
Infatti cercando di creare un file con nome .htaccess , windows da errore
Il motivo è semplice.
Windows non accetta di rinominare un file in maniera tale che di fatto lo farebbe diventare solo la sua estensione.
Le estensioni dei files.
In pratica nomefile.txt indicherebbe che nomefile è un file di tipo txt ovvero di testo. Vediamola così: nomefiledue.htaccess indicherebbe che nomefiledue sarebbe un file di tipo htaccess.
Windows non permette/rebbe di rinominare nessuno dei due file in questa maniera:
“nomefile.txt” –> “.txt”
“nomefiledue.htaccess” –> “.htaccess”
allora? Come si fa a creare un file .htaccess in windows?
Per creare un file .htaccess in windows bisogna creare un file fittizio , ad esempio nome.htaccess
Poi si avvia il buon vecchio, e per molti misterioso, prompt dei comandi e si esegue il comando
rename x:\percorso\del\file\nome.htaccess x:\percorso\del\file\.htaccess
Fatto! Abbiamo creato il file .htaccess in windows
How to create the .htaccess file in xampp windows
Today we needed to create the .htaccess in windows , it was needed for an application we are testing on xampp, but it took some moments of meditation to figure out how to create it.
Infact attempting to create a file with name .htaccess , makes windows to throw an error.
The reason is simple.
Windows doesn’t allow to rename a file in such a way that would turn it in its extension par only.
The files extensions.
namefile.txt would indicate that namefile is a file of type txt or rather a text file, else, namefiletwo.htaccess would indicate that namefiletwo would be a file of type htaccess.
Windows won’t allow to rename them in this way:
“namefile.txt” –> “.txt”
“namefiletwo.htaccess” –> “.htaccess”
So now what? How to create an .htaccess file in windows?
To create an .htaccess in windows first we create a dummy file , e.g. name.htaccess
Next we start the good old, and for many misterious, command prompt and finally we execute this command
rename x:\path\to\file\name.htaccess x:\path\to\file\.htaccess
Done! We have created an .htaccess in windows