我正在尝试在AWS EC2云服务器上部署laravel 5.1项目,并且在laravel网站路由URL方面存在问题。
我运行以下命令来配置EC2 ubuntu 14.04 LTS服务器。
sudo apt-get install apache2
sudo apt-get install mysql-server php5-mysql
sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt
sudo apt-get install php5 php-pear
sudo apt-get install curl php5-curl php5-cli git
sudo a2enmod rewrite
sudo php5enmod mcrypt
sudo service apache2 restart
当我尝试访问任何路由网址但我的主页正确加载时出现以下错误。
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /register was not found on this server.</p>
<hr>
<address>Apache/2.4.7 (Ubuntu) Server at xxxx.ap-southeast-2.compute.amazonaws.com Port 80
</address>
</body></html>
我已将apache路由URL更改为laravel项目的公用文件夹,但没有成功。此外,我尝试启用以下虚拟主机文件,但仍然遇到相同的错误。
<VirtualHost *:80>
ServerAdmin webmaster@mynewhost.com
DocumentRoot /var/www/html/mynewhost/public
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
我运行以下命令以授予存储文件夹
的权限 chmod -R 777 storage
我是否需要向laravel项目文件夹授予任何权限?
感谢任何帮助。
答案 0 :(得分:2)
这是我在Ubuntu 14.04上的Laravel 5.1的配置
您可能需要启用重写引擎
sudo a2enmod rewrite
如果这不起作用,您可以将虚拟主机配置更改为此类
<VirtualHost *:80>
ServerName laravel.example.com
DocumentRoot /var/www/html/mynewhost/public
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/html/mynewhost/>
AllowOverride All
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
另外将ServerName添加到/etc/hosts
<your-server-ip-address> laravel.example.com