有没有办法获得 apache userdir 的绝对路径(http://localhost/~username/
映射到的路径,假设它在 apache 配置中启用)。一个表,其中 UserDir 指令对应于可以在https://httpd.apache.org/docs/2.4/mod/mod_userdir.html找到的路径。例如,
UserDir directive used Translated path
UserDir public_html ~bob/public_html/one/two.html
UserDir /usr/web /usr/web/bob/one/two.html
UserDir /home/*/www /home/bob/www/one/two.html
我想为当前登录的用户获取“翻译路径”(最好是绝对路径),因为它在 apache 配置中启用。当然我可以手动找出,但我的问题是如何自动确定。我希望有这样的功能apache2 --show-current-userdir
只是打印它。