WordPress:スラッグと同名ディレクトリを配置したい

WordPressのルートディレクトリにあるindex.php(先頭ファイル)をコピーして下記のように変更して設置したいディレクトリーに格納する

変更前index.php

/** Loads the WordPress Environment and Template */
 require( dirname( FILE ) . '/wordpress/wp-blog-header.php' );

変更後index.php

/** Loads the WordPress Environment and Template */
 require( '../wordpress/wp-blog-header.php' );

もしリダイレクトループになってしまったら
functions.phpに追記。

 remove_filter('template_redirect', 'redirect_canonical'); 

投稿日

カテゴリー:

投稿者:

コメント

コメントを残す

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください

%d人のブロガーが「いいね」をつけました。