【发布时间】:2017-12-17 21:03:48
【问题描述】:
我遇到了路由问题,我使用的是 laravel 5.4 和 xampp。 我使用这个地址 'localhost/project/laravel/public' 去主页。 当我单击导航区域中的任何链接时,我找不到对象。 点击后地址显示http://localhost/about
I edit home.blade.php as
href = "./" and "./about" By adding period
problem solved to some extent
but when I am on another page
e.g login page address is http://localhost/project/laravel/public/users/login
and if I want to go to contact page, again object not found message received
This time address is http://localhost/project/laravel/public/users/contact
I also tried href="{{ url('/contact')}}" in home.blade.php
The problem remains same.
and
php artisan serve
localhost:8000 gives 'unable to connect'
Please guide, thanks.
【问题讨论】:
标签: laravel