gpt4 book ai didi

php - 如何允许某些文件夹使用 HTAccess 重写,但不是全部?

转载 作者:搜寻专家 更新时间:2023-10-31 21:20:27 24 4
gpt4 key购买 nike

我的域根目录中的索引文件上有一个路由器。它使用 URL 中提供的目录来获取域所需的文件。如果需要,我可以提供更多详细信息,但是如果我不修改 HTAccess 超出我开始时的默认值,应用程序就可以工作,所以我不这么认为。

PHP 应用程序处理错误,因此我将 ErrorDocument 指向我的根目录。

这是我当前的 HTAccess 文件:

Options -Indexes
DirectoryIndex index.php

ErrorDocument 404 http://example.com/
ErrorDocument 403 http://example.com/

Options +FollowSymLinks
RewriteEngine On

RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f

RewriteRule ^.*$ ./index.php

使用它,example.com/folder/directory/ 成功加载 example.com/index.php,但是 URL 保持不变,所以我的路由数组有

$router->dir[0] == "folder";
$router->dir[1] == "directory";

我试图修改最后一行以排除一些允许用户进入的目录。我们称它们为/users/和/allowed/。这些并不多,而且永远不会(希望如此),所以我宁愿把它们列出来。还有依赖项目录,为方便起见,我们称它们为/js/和/css/。

还有存放代码的目录。我们称它们为/code/和/not-allowed/。

这是我试过的修改版本,删除了条件,因为我想控制允许和不允许的文件夹和文件:

Options -Indexes
DirectoryIndex index.php

ErrorDocument 404 http://example.com/
ErrorDocument 403 http://example.com/

Options +FollowSymLinks
RewriteEngine On

RewriteRule ^/((?!(users|allowed|js|css).*)$) ./index.php

这类作品。在我之前的示例中,example.com/folder/directory 加载为 404,因此它随后被路由到索引页面,但是浏览器中的 URL 更改为 example.com,很明显重定向确实发生了。

删除 ErrorDocument 行,我得到默认的 Apache 404 页面,并且未加载 index.php 文件。

1) 是否有一个非常简单的解决方案?我的正则表达式中的错字,也许?我整天都在看 Stack Overflow,并且浏览了文档。我似乎无法同时允许某些文件夹和不允许其他文件夹。

2) 允许访问所有内容然后标记不允许访问的文件夹是否更聪明?如果是这样,我应该怎么做最好?我应该为这些目录中的每一个提供它们自己的 HTAccess 吗?我想我宁愿不这样做。

谢谢!

最佳答案

您可以使用此代码:

ErrorDocument 404 /
ErrorDocument 403 /

DirectoryIndex index.php
Options +FollowSymLinks -Indexes

RewriteEngine On

RewriteCond %{THE_REQUEST} !/(?:users|allowed|js|css)[/?] [NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]

RewriteCond %{THE_REQUEST} 确保我们在原始网络请求 URI 上操作,而不是在重写的 URI 上操作。

关于php - 如何允许某些文件夹使用 HTAccess 重写,但不是全部?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51660144/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com