我真的不是.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错误?
答案 0 :(得分:0)
我认为你正在寻找<directory>
指令,如:
<Directory "path/to/data">
Allow from all
</Directory>