現代の千利休を求めて

ゲームプログラマーのブログ

MENU

【Wordpress】パーマリンクで404NotFound

どうも千利休です。

パーマリンクの変更をしたらエラーが出てしまったので私の場合の解決手順を書いときます。

htaccesのオーバーライドを有効にする

この表現でいいのかわか

らないのですが、wordpress直下に

.htaccesファイル
があるのでこいつの設定を反映できるようにしてあげます。

vi /etc/httpd/conf/httpd.conf 
# Further relax access to the default document root:
<Directory "/var/www/html">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    # ここをNoneからAllに変更
    AllowOverride All

    #
    # Controls who can get stuff from this server.
    #
    Require all granted
</Directory>

私の場合はhtml直下にwordpressを置いていたのでここの設定を一部分だけ書き換えます。

AllowOverride None

AllowOverride All

あとはhttpdを再起動してあげれば変更が反映されます。

systemctl restart httpd

これでパーマリンクが正しく設定できるようになりました!
案外ハマるとびっくりしてしまいましたがこんな簡単なことで直るのですね・・・

以上パーマリンクでの404エラー回避方法でした。