标签: redirect nginx url-redirection http-redirect nginx-location
我有以下地址:
www.example.com/portal
我希望它将其重定向到:
www.example.com
如何配置nginx来执行此操作?
到目前为止,我有:
location /portal { return 301 $scheme:\\$server_name; }
但它不起作用。任何帮助表示赞赏!
答案 0 :(得分:2)
尝试使用重写 -
rewrite ^/portal / permanent;