在我编写的工具中,我只想要“公共”子文件夹中的可用 index.php 文件,我的根目录结构(我的应用程序)如下
uapi(root)
/Application
/Config
/Public
Index.php
/Storage
.htaccess
我希望除 Public 之外的所有文件夹都被重定向到 /Public/Index.php,并且它不能基于域,因为该工具可以下载并安装在用户服务器上。
这是.htaccess,但不是重定向它通常会打开目录
Redirect 301 /Storage/ http://localhost:800/web/uapi/Public/
Redirect 301 /Application/ http://localhost:800/web/uapi/Public/
Redirect 301 /Config/ http://localhost:800/web/uapi/Public/