#
ドキュメント

Document

自分のための備忘録です。

概要

ドキュメントルートにディレクトリ(名前は任意)を作成してインストールしたWordpressをドキュメントルート直下で動作させる。

配置

|-DocumentRoot
    |
    |-- index.php
    |
    |-- .htaccess
    |
    |-- wordpress
        |
        |...
        |
        |-- wp-content
        |
        |...

手順

  1. 管理画面 > 設定 > 一般設定で以下を設定
  2. index.php、.htaccessをドキュメントルートに移動
  3. index.phpを修正
  4. 管理画面 > 設定 > パーマリンク設定で変更を保存をクリック

index.php

<?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 __DIR__ . '/wp-blog-header.php';
+ require __DIR__ . '/wordpress/wp-blog-header.php';

基本的な配置

option_id option_name option_value
1 siteurl https://example.com/wordpress
2 home https://example.com/