WordPressのルートディレクトリにあるindex.php(先頭ファイル)をコピーして下記のように変更して設置したいディレクトリーに格納する
変更前index.php
/** Loads the WordPress Environment and Template */
require( dirname( FILE ) . '/wordpress/wp-blog-header.php' );
変更後index.php
/** Loads the WordPress Environment and Template */
require( '../wordpress/wp-blog-header.php' );
もしリダイレクトループになってしまったら
functions.phpに追記。
remove_filter('template_redirect', 'redirect_canonical');
コメントを残す