WordPress im DocumentRoot erreichbar

Wenn WordPress direkt unterhalb des Domainennamens erreichbar sein soll, d.h. unter der URL:
http://www.basche-kunterbunt.de
und nicht unter
http://www.basche-kunterbunt.de/wordpress/

, dann ist in den Einstellungen von WordPress folgendes vorzunehmen:

WordPress-Adresse (URL) http://www.basche-kunterbunt.de/wordpress

Blog-Adresse (URL) http://www.basche-kunterbunt.de

Ergänzend ist im DocumentRoot, d.h. eine Verzeichnisebene oberhalb von /wordpress/ eine angepaßte index.php abzulegen:

<?php
/**
* Front to the WordPress application. This file doesn’t do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/

/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define(‘WP_USE_THEMES’, true);

/** Loads the WordPress Environment and Template */
require(‘./wordpress/wp-blog-header.php’);
?>

Die Kommentarfunktion ist geschlossen.