2014-09-26 49 views
0

我想使用wididog的身份驗證用戶訪問網絡和apache2服務器上的配置,並使用官方網站http://www.authpuppy.org/doc/Getting_Started進行配置,但當我請求第3步時,我得到了一個網址:http://127.0.0.1:8080/install/3和Not Foundwifidog身份驗證服務器請求http:// serverdomain/install/3出現錯誤

在此服務器上找不到請求的URL/install/3。

此外,試圖使用ErrorDocument來處理請求時遇到一個404 Not Found錯誤。

我真的需要幫助,非常感謝!

回答

0

我剛碰到這個。我忘記了在我的apache安裝上啓用重寫。

sudo a2enmod rewrite 
sudo service apache2 restart 
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