wordpressのURL変更について
http://0000.com/wpをhttp://0000.comに変更をしようと思いました。
まず設定画面からサイトの名前をhttp://0000.com/wpからhttp://0000.comに変更し、
index.phpをFTPから抜き
<?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('./wp-blog-header.php');
?>
の↓を変更。
/** Loads the WordPress Environment and Template */
require('./wordpress/wp-blog-header.php');
?>
その後一つ上の層にindex.phpをあげたのですがサイトにアクセスすると、
Warning: require(./wordpress/wp-blog-header.php) [function.require]: failed to open stream: No such file or directory in /home/sites/heteml/users113/0/1/f/01f-boy/web/pimp/index.php on line 17
Warning: require(./wordpress/wp-blog-header.php) [function.require]: failed to open stream: No such file or directory in /home/sites/heteml/users113/0/1/f/01f-boy/web/pimp/index.php on line 17
Fatal error: require() [function.require]: Failed opening required './wordpress/wp-blog-header.php' (include_path='.:/usr/local/php5/php') in /home/sites/heteml/users113/0/1/f/01f-boy/web/pimp/index.php on line 17
と出てきてサイトが表示されません
。
wp-blog-header.phpがなにかあるのかと思い開けると下記のコードが書いてありました。
<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
if ( !isset($wp_did_header) ) {
$wp_did_header = true;
require_once( dirname(__FILE__) . '/wp-load.php' );
wp();
require_once( ABSPATH . WPINC . '/template-loader.php' );
}
?>
しかし自分はphpがよくわからないためどこを変更すればhttp://0000.comでサイトが見れるのかわかりません。
教えてください。
補足
PCとSPの振り分け自体の方法は十分知っているのですが、そうではなくてWordpressでの実装方法を知りたいんですよね。 いくつか調べたところによると「WordpressはURLは変えずに内部でテンプレートを切り分けるようにする」というのが通常のやり方のようなのでイレギュラーな方法になるのだと思います。