通过 .htaccess 禁用 php 功能
我想仅在特定文件夹中禁用一些 php 函数,我想到使用 htaccess:
例如我尝试添加此行:
php_admin_value disable_functions "system, etc.."
但是它不起作用,我只是收到 500 错误,如果您知道如何使其发挥作用,请分享。
感谢有关此主题的任何帮助。
-- 编辑 --
我已经打开了我的 litespeed,现在没有更多错误,但仍然允许使用 system(),我想为我的服务器的主文件夹关闭它。
有什么解决办法吗?
I want to disable few php functions only in a specific folder, I thought of using htaccess:
For example I have tried adding this line:
php_admin_value disable_functions "system, etc.."
However it doesn't work, I just get 500 error, if you know how to make it work, please share.
Appreciate any help on this subject.
-- EDIT --
I have turned on my litespeed and now there are no more errors, but system() is still allowed, I want to turn it off for my server's home folder.
Any solutions ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
php_admin_value
在.htaccess
文件中无效。它只能在httpd.conf
中使用。有关详细信息,请参阅:http://php.net/configuration.changes。请改用
php_value
,或在httpd.conf
的
或
块中添加指令代码>.php_admin_value
is not valid in.htaccess
files. It can only be used inhttpd.conf
. See: http://php.net/configuration.changes for details.Use
php_value
instead, or add the directive in a<Location>
or<Directory>
block inhttpd.conf
.http://www.php.net/manual/en /ini.core.php#ini.disable-functions
http://www.php.net/manual/en/ini.core.php#ini.disable-functions
HTTP 状态代码 500 可能来自错误的 .htaccess 文件。
您可以将 .htaccess 文件重命名为其他名称一段时间,以检查问题是否来自那里。如果是这样,您可以将 .htaccess 代码粘贴到此处来为您提供解决方案。
Propably the HTTP Status code 500 comes from wrong .htaccess file.
You can rename the .htaccess file to something else for a while to check if the problem comes from there. If so you can then paste the .htaccess code here to give you the solutions.
在您的 .htaccess 中放置
php_admin_value disable_functions " "
仅当您被允许这样做时才这样做。试一试。
in your .htaccess put
php_admin_value disable_functions " "
This is only if you are allow to do so. Give it a shot.