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.
我想限制对我服务器上文件夹的访问,以便访问者只能通过同一域中的链接访问内容(Web 应用程序)。我可以使用 .htaccess 执行此操作吗?需要明确的是,我只是想阻止直接访问内容,以便访问者通过我网站上的其他页面进行路由以到达那里。
听起来你想要 URL 重写。重写所有 URL 以指向单个入口点(即索引页面),并将路由设置为 GET 变量(即index.php?r=css/file.css)。
index.php?r=css/file.css
这样,您就可以完全控制去往何处,并且可以include相应地重定向您的用户。
include