如何让Nginx+Tomcat把带WWW域名自动跳转到不带www域名方法

分类: 电脑网络
人气 3,403 / 评论 如何让Nginx+Tomcat把带WWW域名自动跳转到不带www域名方法已关闭评论 / 日期 2019-6-10
作者:

在nginx.conf里面 include /etc/nginx/conf.d/*.conf;
在应该server里增加:
if ($http_host !~ “^xxx.com”) {
rewrite /.* http://xxx.com$uri permanent;
}
注意:!~ “^xxx.com” 这个xxx是你的域名,不用在前面带www.的

server_name xxx.com www.xxx.com;
access_log /var/log/nginx/access_shichuannet.com.log;
error_log /var/log/nginx/error_shichuannet.com.log;

日志代码放在server_name下,上面的if语句放在日志下面

其他二级域名使用另外的server,不受这个跳转的影响

 

——————————
apache的.htaccess代码
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.\.me$ [NC]
RewriteRule ^(.*)$ http://googlo.me/$1 [L,R=301]
————————

server {
listen 80;
server_name DOMAIN.com www.DOMAIN.com;
access_log /var/log/nginx/DOMAIN.com.log;
error_log /var/log/nginx/DOMAIN.com.log;

if ($http_host !~ “^DOMAIN.com”) {
rewrite /.* http://DOMAIN.com$uri permanent;
}

location / {
client_max_body_size 10m;
index index.html index.htm index.jsp;
proxy_set_header Host $host;
proxy_pass_header User-Agent;
proxy_pass http://localhost:8089/;
}

error_page 404 /404.html;
location = /40x.html {
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
}

}

相关资源:
  • 如何在ubuntu系统下安装nvidia显卡驱动?
    如何在ubuntu系统下安装nvidia显卡驱动?
    2024-3-73
  • 基于 PVE 的 Debian GPU 大模型开发环境搭建
    基于 PVE 的 Debian GPU 大模型开发环境搭建
    2023-11-230
  • 面试题:MySQL如何对数据库进行主从备份?非常简单,一看就会!
    面试题:MySQL如何对数据库进行主从备份?非常简单,一看就会!
    2023-11-815
  • 没有网如何安装win11/windows11?
    没有网如何安装win11/windows11?
    2023-9-1819
  • 2023年Ubuntu 常用集合汇总 更新时间[2023年6月6日]
    2023年Ubuntu 常用集合汇总 更新时间[2023年6月6日]
    2023-6-417
  • 针对CUDA11.4、CUDNN、如何安装Pytorch版本
    针对CUDA11.4、CUDNN、如何安装Pytorch版本
    2023-5-119
  • 如何用NVIDIA-SMI查看GPU的参数
    如何用NVIDIA-SMI查看GPU的参数
    2023-4-2618
  • 神奇Chrome 您的连接不是私密连接解决办法
    神奇Chrome 您的连接不是私密连接解决办法
    2023-3-413

评论

评论已关闭!


窍门网微信公众帐号
微信扫描
立刻加入