Sie haben Worpress installiert im Unterordner /worpress und möchten aber das die Leute welche auf ihre Webseite kommen nicht immer diesen Ordner sehen und aber sofort dort hin geleitet werden.
Dies ist ganz einfach zu bewerkstelligen in dem sie:

1. Eine index.php Datei im /httpdocs Ordner erstellen mit folgendem Inhalt

<?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( dirname( __FILE__ ) . '/wordpress/wp-blog-header.php' );
?>



2. Nun diese Datei per FTP hochladen und sicherstellen das sich keine index.html Datei mehr im webroot /httdocs befindet...fertig.

War diese Antwort hilfreich? 1 Benutzer fanden dies hilfreich (2 Stimmen)