私は仮想マシンをAzureでDrupalでホストしています。403 drupalにサイトをアップロードする際に禁止されています
はdrupal/htdocs/sites
では私はこのフォルダに名前をmy-site.com
それから私は、アップロードしたすべての私のウェブサイトのデータを新しいフォルダを作成しました。彼らはdefault.settings.php
,settings.php
とfiles
のフォルダです。
私はこのURLを経由してこのサイトを開こうとすると、私はphpMyAdminを介して、自分のデータベースをアップロードし、settings.php
に適切なログインとパスワードを設定していますhttp://my.ip.address/sites/my-site.com
それは私にエラーメッセージを示しています。
Forbidden
You don't have permission to access /sites/my-site.com/ on this server.
私をhtaccessファイルには次の行があります:
# Turn off all options we don't need.
Options None
Options +FollowSymLinks
# Set the catch-all handler to prevent scripts from being executed.
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
<Files *>
# Override the handler again if we're run later in the evaluation list.
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
</Files>
# If we know how to do it safely, disable the PHP engine entirely.
<IfModule mod_php5.c>
php_flag engine off
</IfModule>
私は間違っていますか?