パーマリンク設定
- WordPress管理画面から、設定 > 一般 を開く
- サイトアドレス (URL) のサブディレクトリ部分を削除
index.php と .htaccess
- FTPクライアントなどでWordPressをインストールしているサーバにアクセス
- インストールしたディレクトリにあるindex.phpを、ルートディレクトリにコピー
- ルートディレクトリへコピーしたindex.phpを編集
変更前
/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . '/wp-blog-header.php' );
変更後
/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . '/wp/wp-blog-header.php' );
- ルートディレクトリに.htaccessを作成
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
以上