问下nginx重定向的问题
我用301重定向,结果显示重定向太多次了
rewrite ^/(.*) test.com/mobile/$1 permanent;
我是想把域名重定向到mobile 手机端目录里面,
但结果 test.com/mobile/mobile/mobile/mobi...
报错了,显示重定向太多次了, 不知道为什么吗
rewrite ^/(?!mobile)(.*) test.com/mobile/$1 permanent;