在 Google Compute Engine 上运行 Ubuntu 16 服务器映像。我第一次接触 Ubuntu。我已经通过安装了 Laravelcomposer
并正确完成了所有操作,但您的网站只打开了主页,其他一切都显示此错误:
404 not found
您可以在此处查看网站:http://35.227.60.17
每个按钮都在路线中重定向,它们只是路线。
- 我已经设置了虚拟主机并禁用了该
000-default.conf
文件,但情况仍然一样。 - 我已经在 XAMPP 服务器(Windows)上对其进行了本地测试。一切正常。
- 甚至数据库迁移也正在运行。
- 我已经通过安装了所有依赖项
composer
。 - 我
php
的服务器上安装了 5.6、7.0、7.1、7.2 以及每个版本的所有扩展。
这是我的routes/web.php
:
App\Post
Route::get('/','PagesControllers@index');
Route::get('/about','PagesControllers@about');
Route::get('/services','PagesControllers@services');
Route::resource('posts','PostsController');
// writing a route for PostController other than resources
//and using App\Post for Post model...
Route:: get('/mytestroute', function()
{
$posts= Post::paginate(1);
return view('mytestroute')->with('posts', $posts);
});
Auth::routes();
Route::get('/home', 'HomeController@index')->name('home');
如何解决这个问题?
答案1
尝试在终端中运行这个
$ sudo a2enmod rewrite
然后添加到你的/etc/apache2/sites-available/000-defaults.conf
里面虚拟主机标记另一个标签:
<Directory /var/www/html>
AllowOverride All
</Directory>
替换/var/www/html
为你的文档根目录。最后重启 apache
$ sudo service apache2 restart
你就可以出发了!