WordPress Permalinks Does Not Work in xampp Setup WordPress permalink non funziona nel programma di installazione di XAMPP
xampp provides a convenient way to quickly and easily install and setup a web server that works without much configuration. XAMPP fornisce un modo conveniente per rapidamente e facilmente installare e configurare un server web che funziona senza molto configurazione. However, permalinks feature won’t work with the default installation of xampp, even though you can properly customize the permalinks structure to create the .htaccess file. Tuttavia, i permalinks caratteristica non funziona con la installazione di default di XAMPP, anche se è possibile personalizzare correttamente i permalink struttura per creare l'. Htaccess file.
When you click on any permalinks, your WordPress blog will return a 404 error instead, saying the post not found. Quando si fa clic su qualsiasi permalink, il tuo blog di WordPress restituisce un errore 404, invece, dicendo il post non trovato. Instead, you can only access your blog posts via default permalinks structure, which is in the form of http://www.mydigitallife.info/?p=123. Invece, si può accedere solo i post del tuo blog tramite impostazione predefinita permalink struttura, che è in forma di http://www.mydigitallife.info/?p=123.
This is because in xampp, mod_rewrite is not enable by default. Questo perché in XAMPP, mod_rewrite non è consentire di default. Beside, AllowOverride directive in Apache configuration file is also set to None by default, causing Apache web server to ignore any .htaccess file, which used to rewrite the permalinks to the post’s actual url. Accanto, direttiva AllowOverride nel file di configurazione di Apache è impostato su Nessuno per impostazione predefinita, provocando server web Apache per ignorare qualsiasi. Htaccess file, che ha utilizzato per riscrivere i permalink al posto effettivo della url.
To use permalinks in WordPress that installed on xampp-based server, edit the httpd.conf that locates in C:\Program Files\xampp\apache\conf directory (folder). Per utilizzare i permalinks in WordPress che XAMPP installato sul server basato su, modificare httpd.conf che individua in C: \ Programmi \ XAMPP \ Apache \ conf directory (cartella). Open httpd.conf in any text editor, search for “mod_rewrite”. Httpd.conf aperto in qualsiasi editor di testo, ricerca per "mod_rewrite". You should come to a line like this: Si dovrebbe giungere a una linea come questa:
#LoadModule rewrite_module modules/mod_rewrite.so # LoadModule rewrite_module modules / mod_rewrite.so
Remove the hash sign (#) from the line. Rimuovere il carattere cancelletto (#) dalla linea. The # indicates the line is not in effect. # Indica la linea non è in vigore. The changed line should looks like this: Il cambiamento di linea dovrebbe assomiglia a questo:
LoadModule rewrite_module modules/mod_rewrite.so LoadModule rewrite_module modules / mod_rewrite.so
After that, search for “AllowOverride”. Dopo di che, cercare "AllowOverride". You will come to a line like this: Arriverete ad una riga come questa:
AllowOverride None Nessuno AllowOverride
If the above line is contained within default directory (mean the directory declaration is just Se la linea di cui sopra è contenuta all'interno di directory predefinita (in media la directory dichiarazione è solo
AllowOverride All Tutti i AllowOverride
Restart the Apache. Riavviare Apache. Permalinks is working after restart. Permalinks sta lavorando dopo il riavvio.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Questa è una pagina tradotta macchina che è fornito "così com'è" senza alcuna garanzia. Machine translation may be difficult to understand. Traduzione automatica può essere difficile da capire. Please refer to Si prega di fare riferimento a original English article articolo originale in lingua inglese whenever possible. quando possibile.
Share and contribute or get technical support and help at Condividere e contribuire o ottenere supporto tecnico e assistenza in My Digital Life Forums La mia vita digitale Forum .
Related Articles Articoli correlati
- Easily Set Up Web Server with XAMPP Facilmente istituire server Web con XAMPP
- Enable MySQL InnoDB Storage Engine Support in XAMPP Installation Consentire MySQL InnoDB motore di memorizzazione sostegno in XAMPP installazione
- Download WordPress 2.3 Release Candidate 1 (RC1) with Tags Support Download WordPress 2,3 Release Candidate 1 (RC1) con supporto Tag
- Paginating or Split WordPress Post or Page with NextPage in WordPress Not Working Paginating o Split WordPress Post o con Nextpage in WordPress non funzionante
- Download Previous or Old Version of WordPress Download precedente o vecchia versione di WordPress
- Tag Managing Thing Plugin for WordPress 2.3 or Above Gestione dei tag Thing Plugin per WordPress 2,3 o superiore
- Integrate WordPress including Comments with bbPress Forum using bbSync Integrare WordPress compresi Commenti con bbPress utilizzando Forum bbSync
- How to Move WordPress Blog to New Domain or Location Come muoversi a wordpress blog nuovo dominio o la località
- WordPress 2.1.1 Critical Security Alert - Download Upgrade to 2.1.2 WordPress 2.1.1 Critica Security Alert - Download aggiornamento a 2.1.2
- Must Have WordPress Plugins Deve avere collegamenti di WordPress

















August 15th, 2008 04:59 15 agosto 2008 04:59
Thanks A LOT! Thanks a lot! Works great! Grandi opere!