AWS EC2 ubuntu服务器权限问题

时间:2014-09-11 05:15:00

标签: .htaccess ubuntu redirect amazon-web-services amazon-ec2

我正在使用  AWS EC2 instance as file instanceinstall ubuntu 14 as os以及apche2 as web server正在运行的magento系统

信息1:i do not create any apache user group from myself.

Info2: 运行magento系统

Info3: 我没有htaccess文件

问题1:文件permission is not work when i am trying using below code step:   当我尝试使用以下表示文件和文件夹权限时,请表示

sudo find . -type d -exec chmod 775 {} ;

显示错误:

find: missing argument  to '-exec'

enter image description here

问题2: Apache mod rewrite is not working: 尝试代码sudo su -c "a2enmod rewrite"并通过推荐检查它的工作原理。 我已经对此文件进行了编辑

/etc/apache2/sites-available/000-default.conf

 ServerName server_domain_name_or_IP
    <Directory /data/>
        AllowOverride All
    </Directory>

it site goes to 500 Internal error

问题3: how to enable htacess

请帮助我。

1 个答案:

答案 0 :(得分:1)

find应该是这样的: find . -type d -exec chmod 755 {} \;

另外,请勿在同一问题中发布多个问题。为每个问题创建一个单独的问题。