使用 Lighttpd 进行用户特定 URL 重定向
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 lighttpd 的
include_shell
命令来包含所有用户的/home/
目录中的配置。如果您在此处调用解释器,则可以使用参数指定可执行(二进制)可选。该程序/脚本返回 lighttpd-config 格式的文本。为了能够在配置更改时重新启动 lighttpd,您需要一个守护进程或一个 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.