• 20-09-2022, 22:22:23
    #1
    .htaccess ile
    ErrorDocument 404 https://site.com
    komutu ile Not Found sayfalarımı anasiteme yönlendiremiyorum, baska bir yolu, yöntemi bilen var mıdır?
  • 20-09-2022, 22:26:39
    #2
    Exception/Handler.php içerisinde render kısmı için
      public function render($request, Exception $exception)
        {
             if ($this->isHttpException($exception)) {
                return redirect()->route('anasayfa');
            } else {
                parent::report($exception);
    
            }
        }
    Route kısmını anasayfasının rota adını vererek de kullanabilirsiniz.

    beyazitkolemen.com/laravel-hata-sayfalarini-yonlendirme
  • 20-09-2022, 22:32:14
    #3
    @ibocum;
    hocam tam olarak nereye : https://prnt.sc/8UCms2S54tgT
  • 21-09-2022, 17:16:25
    #4
    Çözümü budur:
    public_html/resources/views/errors
    404.blade.php
    olusturmalısınız..