使用 Lighttpd 进行用户特定 URL 重定向

发布于 2024-08-25 07:49:38 字数 217 浏览 10 评论 0原文

Apache Web 主机有一个用户可配置的 ~/.htaccess 文件,允许本地重定向,例如 www.awesomesite.com => www.awesomesite.com/launchmyawesomeapp.cgi

在lighttpd中我知道有一个全局/etc/lighttpd.conf文件,但是是否有像Apache htaccess文件这样的本地文件?

谢谢, 乔

Apache web hosts have a user-configurable ~/.htaccess file that allows local redirects, for example, www.awesomesite.com => www.awesomesite.com/launchmyawesomeapp.cgi

In lighttpd I know there is a global /etc/lighttpd.conf file, but is there something local like the Apache htaccess file?

thanks,
joe

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

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

发布评论

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

评论(1

半枫 2024-09-01 07:49:38

您可以使用 lighttpd 的 include_shell 命令来包含所有用户的 /home/ 目录中的配置。如果您在此处调用解释器,则可以使用参数指定可执行(二进制)可选。该程序/脚本返回 lighttpd-config 格式的文本。为了能够在配置更改时重新启动 lig​​httpd,您需要一个守护进程或一个 cronjob(检查时间戳更改)。据我所知,这是因为 lighttpd 仅在启动时加载配置。

You could use lighttpd's include_shell command to include a config from all user's /home/ directory. You specify an executable (binary) optional with paramenter if you call an interpreter here. That program/script returns lighttpd-config formated text. To be able to restart lighttpd on config change you'd need a daemon or a cronjob for it (check for timestamp changes). This is, as far as I know, because lighttpd loads configs only on startup.

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