在 Os X 上,除了修改主机文件之外,还有哪些其他可能的方法可以将所有 http 请求重新路由到本地 html 文件?

发布于 2024-10-17 21:38:53 字数 94 浏览 1 评论 0原文

修改主机文件需要 Mac 应用程序每次都询问用户的管理员密码,这不能提供良好的用户体验。有没有其他方法可以在 Mac Os X 上在有限的时间内阻止互联网(或只是网站)访问?

Modifying the hosts file requires a mac app to ask for the user's admin password every time which does not offer a good UX. Are there any other way to block internet (or just websites) access for a limited time on Mac Os X?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七秒鱼° 2024-10-24 21:38:53

您可以为您的应用创建一个帮助工具,它可以接收永久权限并将其放入 /usr/local/bin/

然后您只需询问用户的管理员密码一次,即可安装帮助工具并设置权限。

chown -R 0:0 [HELPER_TOOL]
chmod -R 4755 [HELPER_TOOL]

You could make a helper tool for your app, which could receive permanent permissions and place it into /usr/local/bin/

Then you would only have to ask for the user's admin password once, to install the helper tool and set the persmissions.

chown -R 0:0 [HELPER_TOOL]
chmod -R 4755 [HELPER_TOOL]
风情万种。 2024-10-24 21:38:53

您应该使用 ipfw 而不是搞乱名称解析。

You should use ipfw instead of messing with name resolution.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文