.htaccessによる設定が反映するようにする †.htaccessに設定を記述したのに反映されない場合は、.htaccessの読み込みをするように設定していない可能性があります。 スポンサーリンク 関連記事 †使用した環境 †
httpd.confを確認(apache2.confとなっている場合もあります) †httpd.confを確認すると、以下の記述があります。 # This should be changed to whatever you set DocumentRoot to. # <Directory "/var/www/html"> <省略> # 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 上記に記述されているように、AllowOverride NoneのNoneをAllに変更すれば.htaccessファイルを読み込むようになります。 httpd.confを修正(AllowOverride Allに変更) †<省略> # 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 All AllowOverride Allに修正し設定ファイルを保存したら、Apache(httpd)の再起動が必要です。 スポンサーリンク |