Laravel使用以下方法生成链接:
<a href="{{ URL::to('users' . '#section1') }}">Section 1</a>
它生成:
http://example.com/users#section1
但是当点击链接并且我被重定向时,链接现在看起来像这样(斜杠添加):
http://example.com/users#/section1
不确定为什么不能保持这样:
http://example.com/users#section1
路线:
Route::get('users', ['as' => 'users.index','uses' => 'UsersController@index']);
由于
答案 0 :(得分:0)
试试这个:
<a href="{{ url('users')}}#Section1">Section1</a>
或:
<a href="{{ url('users#Section1') }}>Section1</a>