虽然页面刷新并且网址已更改,但页面具有相同的视图。 laravel 5.2

时间:2017-02-14 07:41:04

标签: php laravel laravel-5.2

home.blad.php

@foreach($profiles as $profile)
    @if(Auth::user()->email == $profile->email && Auth::user())             
        <a href="{{ url('write') }}"  class="write">WRITE</a>
    @endif
@endforeach

routes.php文件

Route::get('write', 'HomeController@write');

HomeController.php

public function write()
{
    return view('write');
}

write.blade.php没有内容。当我点击此链接页面似乎被更改,但页面不会更改。只是网址被更改了。我怎样才能重定向write.blade.php?

1 个答案:

答案 0 :(得分:0)

如果您发布完整的家庭控制器会更好。

如果您获得所有网址的相同主页内容。您可能没有正确启用nginx / apache重写。