WordPressのホームURLを変更


http://example.com/にアクセスされたら、http://example.com/WordPress/index.phpを読み込むようにするには、

http://example.com/直下にindex.phpを作成し、以下のコードを記述する。

http://example.com/index.phpがhttp://example.com/WordPress/index.phpをインクルードしているので、

URL上はhttp://example.com/直下にWordPressがあるように見える。

/**
 * ルートにアクセスされたら、WordPressの内容を表示する
 */

require( dirname( __FILE__ ) . '/WordPress/index.php' );

 

WordPress管理画面の設定は、
設定>一般で
「WordPress アドレス (URL)」はそのままで、「サイトアドレス (URL)」の項目を修正
http://example.com/WordPress

http://example.com/