1ドメインで複数のWordPressを運営したい時はサブディレクトリ型にすることが選択肢に入る。複数のWordPressを1つのドメインで運用しながら、そのうちの1サイトをルート表示へ変更する。
構成図
- public_html
- test
- index.php //ルート表示に変更する
- test2
- index.php
- test3
- index.php
- test
手順
WordPressを複数インストールする
構成図のように、サーバー上にWordPressを3サイトインストールする。
WordPressにTOPページのURLを教える
ルート表示したいWordPressの管理画面へログインし、設定
>一般設定
へ移動し、サイトアドレスからサブディレクトリ/test
を消去する。
WordPressアドレス | http://test.com/test ※変更しない! |
---|---|
サイトアドレス | http://test.com/test ↓ http://test.com ※最後にスラッシュを付けない |
変更を保存
する。
http://test.com/testへアクセスすると、404が返ってくるようになる。
サーバーのファイルを編集する
ルート表示したいWordPressフォルダのindex.php
と.htaccess
の編集を行っていくが、詳細はWordPressをサブディレクトリにインストールしてルートで表示するを参照。
ここでは簡易な説明に留める。
testフォルダ内のindex.php
と.htaccess
をローカルにコピーし編集する。
index.php 編集後
/** Loads the WordPress Environment and Template */
require __DIR__ . '/test/wp-blog-header.php';
htaccess 編集後
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
レート直下に保存してサーバーにアップロードすると、ディレクトリ構成は以下のようになる。
- public_html
- test
- .htaccess //コピー元
- index.php //コピー元
- test2
- test3
- .htaccess //編集後
- index.php //編集後
- test
サブディレクトリ型WordPressの1つがルート表示される。
アクセスURLと表示サイトのまとめ
http://test.com | testのTOPページ |
---|---|
http://test.com/test | 404 |
http://test.com/test2 | test2のTOPページ |
http://test.com/test3 | test3のTOPページ |