ドキュメントルートにディレクトリ(名前は任意)を作成してインストールしたWordpressをドキュメントルート直下で動作させる。
以下例で siteurl と home の関連を記載する。
管理画面 | wp_options | define( wp-config.php ) | 値 |
---|---|---|---|
WordPress アドレス (URL) | siteurl | WP_SITEURL | https://example.com/wordpress |
サイトアドレス (URL) | home | WP_HOME | https://example.com |
|-DocumentRoot
|
|-- index.php
|
|-- .htaccess
|
|-- wordpress
|
|...
|
|-- wp-content
|
|...
変更を保存
をクリック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/ |