您没有权限访问/ Magento的/(You don't have permission t

2019-10-23 06:55发布

我已经把主机上Magento中的子文件夹/magento/ ,当我尝试打开http://example.com/magento/我得到这个错误

被禁止

您没有权限访问此服务器上的/ Magento的。

我知道是从.htaccess文件的东西,因为如果我删除/重命名它,我就可以打开它,但我不知道到底是什么可以在.htaccess中做到这一点。 是有人之前有过这个问题,可以给一些信息如何解决呢? 我会后未在默认注释行的.htaccess

DirectoryIndex index.php
<IfModule mod_php5.c>

  php_flag magic_quotes_gpc off
  php_flag session.auto_start off

  php_flag suhosin.session.cryptua off

  php_flag zend.ze1_compatibility_mode Off

</IfModule>

<IfModule mod_security.c>

  SecFilterEngine Off
  SecFilterScanPOST Off
</IfModule>

<IfModule mod_ssl.c>
   SSLOptions StdEnvVars
</IfModule>

<IfModule mod_rewrite.c>

   Options +FollowSymLinks
   RewriteEngine on

RewriteRule ^api/rest api.php?type=rest [QSA,L]
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{REQUEST_METHOD} ^TRAC[EK]
RewriteRule .* - [L,R=405]
RewriteCond %{REQUEST_URI} !^/(media|skin|js)/

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l

RewriteRule .* index.php [L]

</IfModule>

Order allow,deny
Allow from all

<Files RELEASE_NOTES.txt>
    order allow,deny
    deny from all
</Files>

Answer 1:

这看起来像文件权限问题。 检查你的web服务器具有读取和执行上的Magento文件夹的权限。



文章来源: You don't have permission to access /magento/