Yasigani-ni Blog

日常やプログラム、コーディングなどのことを色々と・・・

AWSでmod_rewriteが効かない場合

time 2017/10/17

スポンサーリンク

読むのが面倒な人用まとめ

  1. SSHで sudo vi /etc/httpd/conf/httpd.conf を叩く
  2. <Directory “/var/www/html”> を探す
  3. AllowOverride が None になっているので All にする
  4. service httpd restart 叩いて再起動

ここから本文

AWSを使ってEC2にWordPressやCakePHPをインストールしたのはいいけど、ページを開こうとすると404になる方。

yumでインストールしたhttpdは、デフォルトのままではmod_rewriteが効かないようになってます。

有効にしない限りずっと404のままになってしまうので、さくっと変更してしまいましょう。

$ sudo vi /etc/httpd/conf/httpd.conf

でhttpd.confを開いてください。

しばらく下にスクロールしていると

<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
    #
    AllowOverride None

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

が書かれていると思います。

その中の

AllowOverride None

を iを押してINSERTモードに変更して、

AllowOverride All

に変更してください。

変更できたら、エスケープキーを押して :wq で保存。

保存出来たら

$ service httpd restart

で再起動します。

これでmod_reweiteが効くようになっているはずです。

スポンサーリンク

低料金でテストサーバーを作るなら

ドメインを取得するなら



スポンサーリンク

Category