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.
我有一个网站,另一个(用于修改/批准)位于一个名为“批准”的子目录中。这个想法是,一旦获得批准,我就会替换实时站点。有没有办法限制对这个目录的访问,除非你有直接链接——也许是通过.htaccess?关于此场景的协议还有其他建议吗?谢谢!
我用.htacces 尝试过一些东西。您可以制作 403 错误页面。除非您有链接,否则您无法访问目录。
使用以下代码创建一个 .htacces 文件:
## Error Page ErrorDocument 403 /403.html Options -Indexes
##表示该行被隐藏,用于文本
##
ErrorDocument 403 给出了 403 错误文件的位置。你也可以输入这个:/errors/403.html
/errors/403.html
Options -Indexes阻止目录的
Options -Indexes
我希望它对你有用