routeCollection.php中的NotFoundHttpException LARAVEL

时间:2017-10-03 19:20:26

标签: laravel

你在第179行的routeCollection.php中有NotFoundHttpException。

路由/ web.php

Route::get('/', 'MarketingController@home')->name('home');

enter image description here

enter image description here

本地主机: htppd.conf

2 个答案:

答案 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堆栈)

  1. 打开控制面板,然后在apache之前单击config(或 等效
  2. 服务器)

    1. 单击“浏览Apache”将打开一个系统窗口。导航 CONF \额外\
    2. 打开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”常见

    3. 保存文件并关闭。

    4. 在此处使用管理员权限打开您的主机文件 窗

    5. C:\Windows\System32\drivers\etc\hosts)文件添加您的域名

      eg
      127.0.0.0 xyz.dev
      

      6.保存文件并关闭

      7.restart apache

      8.在浏览器xyz.dev

      中创建您的域名