如何通过 htaccess 提供对文件夹及其文件的读取权限

如何通过 htaccess 提供对文件夹及其文件的读取权限

这可能非常简单,但在阅读手册并尝试了几种方法后,我似乎有点卡住了……

当前版本“似乎”允许我通过浏览器访问目录,但不能访问文件。(目录及其文件均为 755 (go+rx) - 644 应该足够,但我掌握了)- 即http://schoolofish.org/html-images/


<IfModule mod_rewrite.c>

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/Images/.* [NC]
RewriteCond %{REQUEST_URI} !^/html-images/.* [NC]
RewriteRule . index.php [L]

</IfModule>

RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]

# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
RewriteRule . index.php [L]

相关内容