我想将 http://xxx.com/admin 永久重定向到 http://admin.xxx.com/admin
我像下面这样写,没有生效
if ($host = "http://xxx.com/admin"){ rewrite ^/$ http://admin.xxx.com/admin/ permanent; }
求助!
$host = "http://xxx.com/admin" 的判断没有效果吧
location /admin { rewrite ^/admin/(.*)$ http://admin.xxx.com/admin/$1 permanent; }
#1 楼 @huacnlee 试了下,好像不行,直接 404 了
我改成这样就可以了
location ~admin { rewrite ^/admin(.*)$ http://admin.xxx.com/admin/$1 permanent; }