我在设置.htpasswd受保护的laravel项目时遇到了麻烦。
我尝试将以下内容添加到我的.htaccess中,但在我输入凭据后导致内部服务器错误(500)..
.htaccess内容:
AuthUserFile .htpasswd
AuthType Basic
AuthName "Secured area"
Require valid-user
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
</IfModule>
这是当前的routes.php。以防万一我应该在routes.php中改变:
Route::get('/', 'HomeController@index');
Route::auth();
Route::get('/home', 'HomeController@index');
我无法在谷歌上找到任何有用的东西,但仍然可以在laravel 5.2下工作,所以我真的希望有人知道:)
答案 0 :(得分:3)
正如@Olaf所说。改变这个:
AuthUserFile .htpasswd
..进入这个:
AuthUserFile /absolute/server/path/.htpasswd
..做了伎俩。非常感谢你!