gpt4 book ai didi

.htaccess - 在 URL 中隐藏目录,同时保留其他文件

转载 作者:行者123 更新时间:2023-12-02 17:43:35 25 4
gpt4 key购买 nike

我开发了一个巨大的工具工作室,每个工具在/tools/文件夹中都有自己的目录。因此,如果您有一个名为 example 的工具,则 URL 将为/studio-dir/tools/example/。

我试图从 URL 中隐藏/tools/目录,同时确保/tools/目录之外的其他文件仍然有效。例如,/index.php 文件和/admin/目录应该保留。

我试过了,但它只对所有内容造成了大量的 404 错误。我知道它可能已经过时了,我不喜欢重写 URL。 :P

RewriteCond %{REQUEST_URI} !^/tools/
RewriteRule ^/?([^/]+)$ /tools/$1 [L]

如果你还是一头雾水,我想:

http://www.example.com/studio/tools/example/index.php

能够加载为:

http://www.example.com/studio/example/index.php

同时仍然保留/tools/目录,并允许加载/tools/目录之外的其他文件。

这可能吗?

最佳答案

你需要这样的东西:

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule /studio/(.*) /studio/tools/$1 [L]
</IfModule>

问题是如果请求的文件同时在工作室文件夹和工具文件夹中,它将无法工作。

但是没有办法阻止这种情况,因为服务器永远不知道 URL 是指/studio/tools/还是/studio/

编辑:您可以像这样从可见的 url 中删除/tools/:

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule /studio/(.*) /studio/tools/$1 [L]
RewriteRule /studio/tools/(.*) /studio/$1 [L,R=302]
</IfModule>

关于.htaccess - 在 URL 中隐藏目录,同时保留其他文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17642122/

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