嗨,我是laravel的新手,我正在做一个简单的博客,但我的网址有问题。
.htaccess更改了网址:
我的链接:
当我点击时:
我的代码:
Route::get('/descargas', 'DescargasController@index');
public function index()
{
//$file= public_path(). "/descargas/guia.pdf";
//$headers = array('Content-Type: application/pdf',);
//return Response::download($file, 'guia_examen.pdf', $headers);
dd("lml");
//return view('hichat');
}
刀片代码:
<a href="{{ url('/descargas') }}" class
为什么通过这个:C
答案 0 :(得分:0)
您的服务器可能配置为将Laravel公共目录视为Docroot,这意味着您的URL路径不需要包含博客/公共,因为http://localhost:8082可能已指向博客/公共目录。如果js资产的路径正常,则apache配置可能是错误的。