Laravel不在Ubuntu中加载内部页面 - 找不到404

时间:2015-04-04 14:39:16

标签: apache .htaccess ubuntu laravel-4 routes

我开发了一个laravel Web应用程序并在实时服务器上运行良好,现在我正在尝试将该项目迁移到本地服务器,

我正在使用Ubuntu 14.04,内置php,apache和mysql。

当我在浏览器中指向localhost / xxxxxxx /(登录页面)时工作正常,在登录表单中输入值后,显示 404 Not Found错误。

我如何解决这个问题,请任何人帮忙..

1 个答案:

答案 0 :(得分:23)

这个问题归功于Htaccess。

运行

sudo a2enmod rewrite

sudo service apache2 restart

另请在位于/ etc / apache2

的apache.conf文件中进行更改
<Directory /var/www/>
    Options Indexes FollowSymLinks
    AllowOverride All
    Require all granted
</Directory>

工作得很好。 !!!!!