Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 WordPress,并且我创建了一些用于通过 FTP 上传文件的文件夹。
我想将文件夹链接重定向到我设置的主页,例如:此链接显示端口 80 的 Apache 服务器,我需要将其重定向到主页。
谢谢
在文件夹的根目录中创建一个索引页
<?PHP header('location:location/to/homepage'); ?>
这将是最简单的事情。
您还可以考虑使用一些.htaccess文件来限制对页面的访问并将它们发送到 403 错误页面或将其发送到主页。
.htaccess