wordpressをサブディレクトリに入れたときにルート表示させる方法

wordpressをサブディレクトリに入れたときにルート表示させる方法

index.phpとhtaccessをコピーしてルートの場所にペーストする。

2,index.phpの変更箇所
require __DIR__ . ‘/wp-blog-header.php’;
↑を↓にする
require __DIR__ . ‘/wp-blog-header.php’;

3,htaccessの変更箇所
RewriteBase /wp/
RewriteRule . /wp/index.php [L]

↑を↓にする

RewriteBase /
RewriteRule . /index.php [L]

 

【サイトアドレス変更】サブディレクトリにインストールしたWordPressをドメイン直下で表示する方法

ポチッ☆とクリックお願いします!
↓ ↓ ↓

  • にほんブログ村 IT技術ブログ ホームページ・サイト制作支援へ

コメントは受け付けていません。

サブコンテンツ

TOP