nginx域名跳转

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx域名跳转相关的知识,希望对你有一定的参考价值。

1. 编辑虚拟主机配置文件/usr/local/nginx/conf/vhosts/huangzhenping.conf

    说明:nginx新增域名直接在server_name行添加(而apache用alias);$host表示域名标量;$1表示域名后面的内容;permanent表示永久重定向


server
{
    listen 80;
    server_name www.huangzhenping.cn www.huanglearn.cn;
    if ($host != ‘www.huangzhengping.cn‘)
    {
      rewrite ^/(.*)$ http://www.huangzhenping.cn/$1 permanent;
    }
    index index.html index.htm index.php;
    root /data/www;



 技术分享


   /usr/local/nginx/sbin/nginx -t

   /usr/local/nginx/sbin/nginx -s reload


2. 使用curl验证,成功跳转

    说明:www.huanglearn.cn网站跳转到www.huangzhenping.cn

 技术分享


本文出自 “一马踏平川” 博客,请务必保留此出处http://huangzp.blog.51cto.com/12434999/1900655

以上是关于nginx域名跳转的主要内容,如果未能解决你的问题,请参考以下文章

NGINX域名跳转案列

公网使用grafana域名无法正常跳转

nginx域名跳转

NGINX实现域名跳转

nginx问题 不同域名实现跳转,原域名访问url不变,怎么样配置nginx?

nginx配置域名跳转