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.
当我尝试使用开发者客户端限制时,我应该使用我的 LAN IP 地址还是我的公共 IP 地址?我正在远程访问该站点。我认为它是公共 IP,但我只是想确定一下。
Developer Client Restrictions 设置不限制对站点的访问。相反,该设置在几个不同的上下文中进行评估,以确定是否应显示某些与开发人员相关的行为,例如日志记录和模板路径提示。(有时会出现问题,例如 FPC 的面包屑块行为和该设置已打开)。
您将需要使用将通过$_SERVER['REMOTE_ADDR'](在这种情况下为您的公共 IP)提供给应用程序的地址。
$_SERVER['REMOTE_ADDR']