htaccess document_root 目录名
吗?
RewriteRule robots.txt dirname(%{DOCUMENT_ROOT})/robots.php [L]
我需要获取 DOCUMENT_ROOT 的父文件夹
is it possible to do this
RewriteRule robots.txt dirname(%{DOCUMENT_ROOT})/robots.php [L]
i need get parent folder of DOCUMENT_ROOT
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法在 .htaccess 文件的上下文中创建指向文档根目录之外的目标的重写规则,因此即使可以找到父目录(我对此表示怀疑),这是行不通的。
我所知道的解决这个问题的唯一方法是创建一个指向正确的 robots.php 文件的符号链接。我什至可以创建一个指向
../robots.php
的相对符号链接,我不确定。You can't create a rewrite rule pointing to a target outside the document root in the context of a
.htaccess
file, so even if it were possible to find out the parent directory (which I doubt), it won't work.The only way around this that I know is creating a symbolic link that points to the correct
robots.php
file. It may even be possible to create a relative symbolic link pointing to../robots.php
, I'm not sure.