因此,我已经查看了与我的问题相关的答案。 我有一个laravel应用程序,在我的本地主机服务器上运行良好。那里的路线运转良好。但是,当我在共享主机上上传laravel应用程序时,只有GET方法有效。当我尝试使用任何POST请求(例如登录到我的应用程序)时,它将发送405错误代码。 因此,例如,我将向您展示在登录时出了什么问题。
这是路线。
Route::post('authinticate',['as'=>'authinticate','uses'=>'LoginController@authenticate']);
控制器功能
public function authenticate(LoginRequest $request)
{ //$credentials = $request->only('user_name', 'password');
$credentials = array(
'user_name' => $request->input('username'),
'password' => $request->input('password'),
);
if (Auth::attempt($credentials)) {
// Authentication passed...
return redirect()->route('home');
}
else{
return redirect()->back()->withErrors(['message' => 'اسم المستخدم او كلمة المرور غير صحيحين.']);
}
}
HTML表单:
<form method="POST" action="{{ route('authinticate') }}">
@csrf
<div class="form-group signIn">
<label for="username">اسم المستخدم</label>
<input type="text" name="username" placeholder="اسم المستخدم" class="form-control" id="username" value="{{ old('user_name') }}">
</div>
<div class="form-group">
<label for="password">كلمة المرور</label>
<input type="password" name="password" placeholder="كلمة المرور" class="form-control" id="password">
<p></p>
<a href="{{ route('forgot') }}" >نسيت كلمة المرور</a>
</div>
<input type="submit" class="btn btn-block btn-default btn-success" name="submit" id="submit" value="دخـــول">
</form>
这是我在提交表单之前从控制台获得的信息。
Mixed Content: The page at 'https://www.aouacc.net/login' was loaded over a secure connection, but contains a form that targets an insecure endpoint 'http://www.aouacc.net/authinticate'. This endpoint should be made available over a secure connection.
答案 0 :(得分:2)
检查标头,对http://www.aouacc.net/aunthinticate
的POST请求返回一个301 Mover Permanently
标头,该标头触发到https版本的重定向。由于显然您未在代码中设置该重定向,因此可能已将其设置为服务器级别。更改您的路线,使他们使用https://www.aouacc.net
而不是http://www.aouacc.net
。