使用参数重定向到相同的URL

时间:2019-04-08 19:38:08

标签: nginx

我有一台带有nginx的服务器,我必须确保每当他们编写域url时,它都会被重定向到相同的域,但是带有一个参数,即:

http://我的站点=> http://我的站点/蓝色

但是当我使用重写时:

server {
    listen 80;
    server_name my-site.org;
    index index.html index.htm;
    root /var/www/my-site.com;
    location / {
       try_files $uri $uri/ /index.html;
       rewrite ^/ /blue;
    }
}

或使用return键:

server {
    listen 80;
    return 301 https://$host/blue;
    server_name my-site.org;
    index index.html index.htm;
    root /var/www/my-site.com;
    location / {
       try_files $uri $uri/ /index.html;
    }
}

我收到错误500内部服务器错误

在前面使用6号角

0 个答案:

没有答案