WordPress Permalinks Does Not Work in xampp Setup WordPress Permalinks funktioniert nicht in xampp-Setup
xampp provides a convenient way to quickly and easily install and setup a web server that works without much configuration. xampp bietet eine bequeme Möglichkeit, schnell und einfach installieren und das Setup ein Web-Server gemeldet, der ohne große Konfiguration. 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. Allerdings permalinks Funktion funktioniert nicht in Verbindung mit der Standardinstallation von XAMPP, obwohl Sie können richtig anpassen, die permalinks Struktur zu schaffen. Htaccess-Datei.
When you click on any permalinks, your WordPress blog will return a 404 error instead, saying the post not found. Wenn Sie auf jeden permalinks, Ihr Blog WordPress gibt eine Fehlermeldung statt 404, die besagt, dass die Post nicht gefunden. Instead, you can only access your blog posts via default permalinks structure, which is in the form of http://www.mydigitallife.info/?p=123. Stattdessen können Sie nur Zugriff auf Ihre Blog-Posts per default permalinks Struktur, die in Form von http://www.mydigitallife.info/?p=123.
This is because in xampp, mod_rewrite is not enable by default. Dies liegt daran, dass in xampp, mod_rewrite ist nicht standardmäßig aktiviert. 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. Neben, AllowOverride Direktive in Apache-Konfigurationsdatei ist auch auf None gesetzt standardmäßig, was Apache Web-Server zu ignorieren alle. Htaccess-Datei, die zur Neufassung der permalinks auf die Post Eigentliche 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). Zur Verwendung permalinks in WordPress, der das Gerät in xampp-basierten Server, zu bearbeiten, dass der httpd.conf findet in C: \ Program Files \ xampp \ apache \ conf-Verzeichnis (Ordner). Open httpd.conf in any text editor, search for “mod_rewrite”. Öffnen Sie die httpd.conf in einem beliebigen Texteditor, suchen Sie nach "mod_rewrite". You should come to a line like this: Sie sollten sich auf eine Zeile wie diese:
#LoadModule rewrite_module modules/mod_rewrite.so # LoadModule rewrite_module modules / mod_rewrite.so
Remove the hash sign (#) from the line. Entfernen Sie das Hash-Zeichen (#) aus der Linie. The # indicates the line is not in effect. Die # Zeigt die Leitung ist nicht in Kraft treten. The changed line should looks like this: Der geänderte Zeile sollte wie folgt aussieht:
LoadModule rewrite_module modules/mod_rewrite.so LoadModule rewrite_module modules / mod_rewrite.so
After that, search for “AllowOverride”. Danach suchen Sie nach "AllowOverride". You will come to a line like this: Sie kommen auf eine Zeile wie diese:
AllowOverride None AllowOverride None
If the above line is contained within default directory (mean the directory declaration is just Wenn die obige Zeile ist in Standard-Verzeichnis ( "Verzeichnis der Erklärung ist nur
AllowOverride All AllowOverride All
Restart the Apache. Starten Sie den Apache. Permalinks is working after restart. Permalinks arbeitet nach einem Neustart.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. WICHTIG: Es handelt sich um eine Maschine der Seite übersetzt wird "as is" ohne Garantie. Machine translation may be difficult to understand. Maschinelle Übersetzung ist vielleicht schwierig zu verstehen. Please refer to Bitte wenden Sie sich an original English article Original Englisch Artikel whenever possible. wann immer dies möglich ist.
Share and contribute or get technical support and help at Aktie und einen Beitrag oder erhalten technische Unterstützung und Hilfe an My Digital Life Forums Meine digitalen Lebens Foren .
Related Articles Verwandte Artikel
- Easily Set Up Web Server with XAMPP Einfaches Einrichten von Web-Server mit XAMPP
- Enable MySQL InnoDB Storage Engine Support in XAMPP Installation Aktivieren Sie MySQL-Storage-Engine InnoDB-Unterstützung bei der XAMPP-Installation
- Download WordPress 2.3 Release Candidate 1 (RC1) with Tags Support Download WordPress 2,3 Release Candidate 1 (RC1) mit Tags Support
- Paginating or Split WordPress Post or Page with NextPage in WordPress Not Working Paginierung oder Split WordPress Post oder mit Nextpage in WordPress funktioniert nicht
- Download Previous or Old Version of WordPress Download vorherigen oder alte Version von WordPress
- Tag Managing Thing Plugin for WordPress 2.3 or Above Tag Managing Thing steckbar für WordPress 2,3 oder höher
- Integrate WordPress including Comments with bbPress Forum using bbSync Integrieren WordPress einschließlich Kommentare mit bbPress Forum mit bbSync
- How to Move WordPress Blog to New Domain or Location Wie sich zu bewegen Wordpress Blog auf neue Domain oder Standort
- WordPress 2.1.1 Critical Security Alert - Download Upgrade to 2.1.2 WordPress 2.1.1 Critical Security Alert - Download Upgrade auf 2.1.2
- Must Have WordPress Plugins Must have WordPress plugins

































August 15th, 2008 04:59 15. Aug 2008 04:59
Thanks A LOT! Thanks a lot! Works great! Works great!