RewriteEngine On にならない場合は、mod_rewrite を有効にする
1873 ワード
未だに、Apache2のRewriteEngine はオプションなので、有効にしてあげないと動作しない。
error.log
/var/www/html/folder/public/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
現在の状態を確認する
apache2 のモジュール関連が有効かどうかは、 /etc/apache2/mods-enabled を見れば分かる。
# ls /etc/apache2/mods-enabled
access_compat.load auth_basic.load authz_core.load autoindex.conf deflate.load env.load mime.load negotiation.conf reqtimeout.conf setenvif.conf status.load
alias.conf authn_core.load authz_host.load autoindex.load dir.conf filter.load mpm_prefork.conf negotiation.load reqtimeout.load setenvif.load
alias.load authn_file.load authz_user.load deflate.conf dir.load mime.conf mpm_prefork.load php7.load status.conf
mod_rewrite を有効にする
# a2enmod rewrite
apache2 を再起動する
service apache2 restart
(番外) Dockerfile でやる場合は
以下の行を Dockerfile に追加しておけばOK。
Dockerfile.
RUN a2enmod rewrite \
&& service apache2 restart
Author And Source
この問題について(RewriteEngine On にならない場合は、mod_rewrite を有効にする), 我々は、より多くの情報をここで見つけました https://qiita.com/YAJIMA/items/68de1bdeb71a921a718d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .