#REWRITE-START if $host ~ ^zxrjorg return 301 httpsautongplasticcom; return 301 httpsmchengheshoescom; #REWRITE-END修改上面的代码使用nginx指令随机301到两个网址
if ($host ~ '^zxrj.org'){ set $redirect_url ""; if ($random_choice = 1) { set $redirect_url "https://autongplastic.com"; } if ($random_choice = 2) { set $redirect_url "https://m.chengheshoes.com"; } return 301 $redirect_url; }
原文地址: https://www.cveoy.top/t/topic/hK5m 著作权归作者所有。请勿转载和采集!