如何在lighttpd中使php文件可下载
我需要允许用户从我的网站下载 php 文件。 网络服务器是lighttpd 我的网站本身是用 php 编写的,因此浏览器中会呈现带有 php 扩展名的普通文件。
我怎样才能只提供一个特定的 php 文件供下载,这样当用户单击链接时,就会开始下载而不是渲染文件。
我不想将文件压缩作为解决方法,我希望用户能够只下载该 php 文件。
有谁知道lighttpd的正确配置指令?
I need to allow users to download a php file from my website.
The web server is lighttpd
I the website itself is written in php, so a normal file with php extension is rendered in browser.
How can I offer just one specific php file for download, so when user clicks on a link a download will start instead of rendering of a file.
I don't want to zip the file as a workaround, I want users to be able to just download that php file.
Does anyone know the correct configuration directive for lighttpd?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其重命名为 txt,或者使用另一个 PHP 脚本来向用户打印 PHP 代码。
Rename it to txt or, have another PHP script that prints the PHP code to the user.
理论上,您应该能够使用来自同一目录的不同 PHP 来完成此操作,如下所示:
让我知道它是否有效。
Theoretically you should be able to do it thought a different PHP from the same directory with something like this :
Let me know if it works.