私は必要最小限のフロント コントローラーを作成しようとしている WAMP 環境で作業しており、プロジェクト ルート (つまり www/molecule/
Options +FollowSymLinks
IndexIgnore */*
# Turn on the RewriteEngine
RewriteEngine On
# Rules
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
WAMP 設定で Apache rewrite_module が有効になっていて、httpd.conf でもコメントが解除されていますが、ディレクトリにその .htaccess を持つページを読み込もうとすると内部サーバー エラーが発生します。Apache エラー ログには次のように表示されます。
[alert] [client 127.0.0.1] C:/wamp/www/molecule/.htaccess: Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
誰かが私を正しい方向に向けることができますか?