Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
因为我不想更改 openx 编码,我想将 IP 从标头设置为 php $_SERVER['REMOTE_ADDR']
在运行任何 php 代码之前,有没有办法从标头中提取 IP(由已经在负载平衡 Web 服务器中的其他程序预先设置)?
您不能在 PHP 包装器 (cgi/module) 之前设置 $_SERVER['REMOTE_ADDR'] 。但是使用 .htaccess php_value "auto_prepend_file",您可以请求在执行其他任何操作之前执行脚本,这样,您可以自由地设置 $_SERVER['REMOTE_ADDR'] 任何您想要的内容。