web-dev-qa-db-ja.com

Apacheは「/etc/httpd/conf/httpd.confの構文エラー:無効なコマンド 'remove'」で始まります

変更後php.ini最大ファイルアップロードサイズと最大投稿サイズ。Apacheを再起動すると、タイトルにエラーが表示されます。どうして?そしてそれを解決する方法は?

# vi /etc/php.ini
# service httpd restart


# service httpd start
Starting httpd: Syntax error on line 304 of /etc/httpd/conf/httpd.conf:
Invalid command 'remove', perhaps misspelled or defined by a module not included in the server configuration

行304は次のとおりです。

<Directory />
    Options Includes Indexes FollowSymLinks MultiViews
    remove Word Indexes
    Options Includes FollowSymlinks MultiViews
    AllowOverride None
</Directory>
1
user1775888

そのスニペットの3行目と4行目。設定は次のようになります

<Directory />
    Options Includes Indexes FollowSymLinks MultiViews
    AllowOverride None
</Directory>
4
masegaloeh