你在第179行的routeCollection.php中有NotFoundHttpException。
路由/ web.php
Route::get('/', 'MarketingController@home')->name('home');
本地主机: htppd.conf
答案 0 :(得分:0)
第一次.env是:
Time t = new Time(Time.getCurrentTimezone());
t.setToNow();
String date1 = t.format("%Y/%m/%d");
Date date = new Date(System.currentTimeMillis());
SimpleDateFormat dateFormat = new SimpleDateFormat("hh:mm aa",
Locale.ENGLISH);
String var = dateFormat.format(date);
String horafecha = var+ " - " + date1;
tvTime.setText(horafecha);
现在:
APP_ENV=local
APP_URL=http://localhost
好吧!! Thansk!
答案 1 :(得分:-1)
似乎它会帮助你或某人以后,
为了访问我们本地网站www.google.com上的域名,我们的本地网站说xyz.dev
我们需要为我们的系统配置一些设置,所以这里是它们(假设您使用的是XAMPP或Windows上的WAMPP堆栈)
服务器)
打开httpd-vhost.conf
文件。添加以下内容(根据您的需要进行修改)
ServerAdmin webmaster@dummy-host.example.com DocumentRoot“C:/xampp/htdocs/dummy-host.example.com” ServerName dummy-host.example.com ServerAlias www.dummy-host.example.com ErrorLog“logs / dummy-host.example.com-error.log” CustomLog“logs / dummy-host.example.com-access.log”常见
保存文件并关闭。
在此处使用管理员权限打开您的主机文件 窗
(C:\Windows\System32\drivers\etc\hosts
)文件添加您的域名
eg
127.0.0.0 xyz.dev
6.保存文件并关闭
7.restart apache
8.在浏览器xyz.dev