我开发了一个laravel Web应用程序并在实时服务器上运行良好,现在我正在尝试将该项目迁移到本地服务器,
我正在使用Ubuntu 14.04,内置php,apache和mysql。
当我在浏览器中指向localhost / xxxxxxx /(登录页面)时工作正常,在登录表单中输入值后,显示 404 Not Found错误。
我如何解决这个问题,请任何人帮忙..
答案 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>
工作得很好。 !!!!!