使用htaccess进行文件夹公共访问

时间:2017-06-16 08:42:36

标签: php apache .htaccess permissions http-status-code-403

我真的不是.htaccess的专家我可以远程访问托管已经运行的php网站的apache服务器。我想创建一个data文件夹并授予它公共访问权限。现在,当我运行http://thewebsite.com/data时,我收到403错误。我检查了权限,但我推断此错误必须与.htaccess

相关
Options -Indexes
DirectoryIndex index.php
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteBase /
RewriteCond %{REQUEST_URI} ^(.*)//(.*)$
RewriteRule . %1/%2 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ index.php?qa-rewrite=$0&%{QUERY_STRING} [L]  

有没有办法通过一些.htacess规则解决这个403错误?

1 个答案:

答案 0 :(得分:0)

我认为你正在寻找<directory>指令,如:

<Directory "path/to/data">
    Allow from all
</Directory>