wifidog身份验证服务器请求http:// serverdomain / install / 3出错

时间:2014-09-26 07:19:10

标签: linux apache wifi router openwrt

我想在autache用户访问网络上使用wifidog的身份验证,在apache2服务器上配置,并使用官方网站http://www.authpuppy.org/doc/Getting_Started对其进行配置,但是当我请求第3步时,我得到了一个网址:{ {1}}和未找到

在此服务器上找不到请求的URL / install / 3.

此外,尝试使用ErrorDocument处理请求时遇到404 Not Found错误。

我真的需要帮助,非常感谢你!

2 个答案:

答案 0 :(得分:0)

我刚碰到这个。我忘了在我的apache安装上启用重写。

sudo a2enmod rewrite
sudo service apache2 restart

答案 1 :(得分:0)

刚看到这个,我遇到了同样的问题。如果有人发现此问题,仅供将来参考,请执行以下操作:

sudo nano /etc/apache2/sites-enabled/000-default.conf

添加以下内容,请注意更改路径/ var / www /...:

<Directory /var/www/html/authpuppy>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride All
                Order allow,deny
                allow from all
</Directory>

然后重启:

 sudo  /etc/init.d/apache2 restart