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.
我想为某些国家/地区显示该服务不可用的页面,需要显示他们访问的任何 URL,我该怎么做?
表示用户类型:domain.com/whatever 我们将始终显示来自静态页面的内容不可用.html 或转发给他们。静态内容文件位于另一个根目录中。
if ($allow_visit = no) { rewrite ^(.*)$ /unavailable.html last; }
您正在谈论nginx Geo 模块。文档还包含有关如何创建自己的基于 MaxMind 的配置文件的链接。