Invalid command 'AuthGroupFile', perhaps misspelled or defined by a module not included in the server configuration

Apacheのベーシック認証の設置でInvalid command 'AuthGroupFile', perhaps misspelled or defined by a module not included in the server configurationというエラーが出たときの対処方です

結論:AuthGroupFile /dev/null行を削除かコメントアウトする

これだけです。別にこれなくても認証ききます。 [c] AuthUserFile /フルパス/.htpasswd #AuthGroupFile /dev/null ←このようにコメントアウトする AuthName "Please enter your ID and password" AuthType Basic require valid-user order deny,allow [/c] [c] AuthUserFile /フルパス/.htpasswd AuthName "Please enter your ID and password" AuthType Basic require valid-user order deny,allow [/c] もう削除しちゃう。これで終わりです。