Laravel 本地设置出现 NotFoundHTTPException

Laravel NotFoundHTTPException on local setup

我从另一个开发人员那里继承了一个使用 Laravel 和 Cartalyst 构建的网站,该网站在生产服务器上正常工作,但是在我的本地安装中,我在主页上收到 NotFoundHTTPException 并且没有其他页面工作。本地设置是笔记本电脑 运行 Ubuntu 并使用 Apache。

试过搜索论坛无果。该网站在生产服务器上完全正常工作,所以我觉得这一定是我的配置问题,而不是实际的编码问题。

当一个人运行 php artisan route:list 时,会列出所有路线。也尝试过清除路由缓存。

如有任何帮助或建议,我们将不胜感激。以下文件的相关位。

.env 文件(相关部分)


    APP_KEY=xxxxxxxxxxxx
    APP_ENV=local
    APP_DEBUG=true
    APP_LOG_LEVEL=debug
    APP_URL=https://local.voicemag.uk

.htaccess


    <IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
     Options -MultiViews -Indexes
    </IfModule>

    RewriteEngine On

    # Handle Authorization Header
    RewriteCond %{HTTP:Authorization} .
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

    # Redirect Trailing Slashes If Not A Folder...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} (.+)/$
    RewriteRule ^ %1 [L,R=301]

    # Handle Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
    </IfModule>

Apache 配置


    <VirtualHost *:443> ServerName local.voicemag.uk
    ServerAlias local.voicemag.uk

    ServerAdmin webmaster@localhost
    DocumentRoot /home/chris/Documents/Webdev/fresh/voicemagv3/public_html

    SSLEngine on
    SSLCertificateFile "/home/chris/Documents/Webdev/ssl/server.crt"
    SSLCertificateKeyFile "/home/chris/Documents/Webdev/ssl/server.key"

    <Directory /home/chris/Documents/Webdev/fresh/voicemagv3/public_html>
      Require all granted
      Allowoverride All
    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
    </VirtualHost>

如果您还需要什么,请告诉我。

NotFOundHttpException 只是因为您的网站找不到与该名称相关的任何路由尝试通过创建虚拟主机或

来访问它
php artisan serve 

http://localhost:8000

上托管您的网站

解决方案是 运行 php artisan extension:autoload

非常感谢大家的帮助