服务器端包含
是否可以使用服务器端包含来访问服务器外部的文件?
如果不是,还有什么其他选择可以做到这一点?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以使用服务器端包含来访问服务器外部的文件?
如果不是,还有什么其他选择可以做到这一点?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
使用 cURL 获取域外的数据。 如果您想执行收到的数据,请继续使用
eval()
。 但是,请预先警告,这将获得页面的“输出”。 这意味着如果它是一个像“.php”页面一样的执行页面,您将获得处理后产生的数据。对于
file_get_contents()
和fopen()
如果您想获取文件的“实际”内容,您需要在另一台服务器上设置某种代理。 (您不能在服务器上执行此操作,因为这将成为服务器端脚本工作方式的安全缺陷)。
这将为您提供您请求的任何文件的内容:
http://test.com/handler.php?file=handler.php
但是,如果其他人找到它,则可能会很危险。
Use cURL to get data outside of the domain. If you want to then execute the data you receive, go ahead and
eval()
it. But, be forewarned that this will get the 'output' of the page. Meaning if it is an executed page like a '.php' page, you will get the data that comes out as a result of it being processed.The same is true for
file_get_contents()
, andfopen()
If you wanted to grab the 'actual' contents of the file, you would want to set up a proxy of sorts on the other server. (You can't do it on your server because then it would be a security flaw in how server-side-scripting works).
That will give you the contents of any file you request:
http://test.com/handler.php?file=handler.php
But, if anyone else finds it, it could be dangerous.
您没有提到服务器软件,但我假设 Apache,其中 SSI 由 mod_include 模块的手册页。 include 元素不允许远程文件。 但是,您有exec,它允许执行任何外部工具; 您可以使用它来调用 wget 或您选择的任何其他命令。
然而,事情可能没那么复杂。 如果您可以在本地系统中挂载远程目录,则可以创建一个普通的符号链接并使用常规的include。
或者,正如已经建议的那样,PHP 使用起来非常简单。
You don't mention the server software but I'll assume Apache, where SSI is provided by the mod_include module. The include element does not allow remote files. However, you have exec, which allows to execute any external tool; you can use it to call wget or any other command of your choice.
However, it might not be so complicate. If you can mount the remote directory in the local system, you can create a plain symlink and use a regular include.
Or, as already suggested, PHP is really simple to use.
你可以在 php 中执行类似 file_get_contents() 或 fopen() 的操作,例如
You can do something like file_get_contents() or fopen() to do this in php, e.g.
是的,nginx 的服务器端包含可以使用任何完整的 url,例如:
Yes, nginx's server side includes can use any full url eg: