将流量重定向到另一个页面

时间:2019-08-20 17:16:12

标签: nginx

我尝试在StackOverflow上找到一条类似的帖子,但找不到与我的问题完全相同的东西。

我想将所有流量从subdomain.example.com/和subdomain.example.com/index.php(仅那些路径,我不想影响网站的其余部分)重定向到clientarea.php。我成功地为index.php完成了此操作,但没有为subdomain.example.com/完成。

此刻,我的代码仅仅是:

  location /index.php {

    return 301 /clientarea.php;

  }

1 个答案:

答案 0 :(得分:1)

以下内容仅与/相匹配:

location = / {
    return 301 /clientarea.php;
}