.htaccess错误:无效的命令“ AuthGroupFile”


12

在此之前,我在Windows上工作,我的项目运行正常。最近,我搬到了ubuntu,并尝试在LAMP上安装项目。

我为此创建了主机(我直接通过本地主机运行的Windows),当我运行它时,得到500 Internal server Error。

当我查看日志文件时,收到无效命令'AuthGroupFile',可能是拼写错误或由服务器配置中未包含的模块定义的。

.htaccess文件

#php_value zend.ze1_compatibility_mode off
AuthName "Restricted Area" 
AuthType Basic 
AuthUserFile /opt/lampp/htdocs/uniplex_mobile/.htpasswd 
AuthGroupFile /dev/null 

<Files manageurls.html>
require valid-user
</Files>
<Files addurl.html>
require valid-user
</Files>
<Files editurl.html>
require valid-user
</Files>

AddType application/x-httpd-php .php .htm .html

我的项目是在聪明的框架上。

谁能帮助解决这个问题?

提前致谢


您可以删除该指令
c4f4t0r 2014年

您正在使用哪些Linux发行版???
Abdul Kadir 2014年

@AbdulKadir我正在使用14.04
Kalpit 2014年

Answers:



1

请使用sudo此命令,因为它对我有用:

sudo a2enmod authz_groupfile

欢迎来到Ask Ubuntu!;-)能否请您查看我的编辑内容,并同时查看编辑帮助内容,以提高您将来的问题的可读性... ;-)
Fabby
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.