将网站slimframework上传到amazone linux EC2

时间:2017-05-01 16:18:25

标签: php .htaccess amazon-ec2 slim

我尝试将我的应用上传到服务器

我用php.mysql,phpmyadmin

打开一个服务器

现在我试着进来,我看到这样的文件: enter image description here

我的索引文件位于文件夹:public

在我的服务器中我有一个文件夹然后我有这样的应用程序: http://ec2-33-194-2.eu-west-1.compute.amazonaws.com/appname/

我将.htaccess放在文件夹appname

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

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ public/index.php [QSA,L]

但系统不起作用:/

1 个答案:

答案 0 :(得分:0)

 1. Open the file '/etc/httpd/conf/httpd.conf'.
 2. sudo su
 3. vim /etc/httpd/conf/httpd.conf
 4. Change the subsequent AllowOverride None to AllowOverride All
 5. sudo service httpd restart

它应该可以正常工作。