- 工信部备案号 滇ICP备05000110号-1
- 滇公安备案 滇53010302000111
- 增值电信业务经营许可证 B1.B2-20181647、滇B1.B2-20190004
- 云南互联网协会理事单位
- 安全联盟认证网站身份V标记
- 域名注册服务机构许可:滇D3-20230001
- 代理域名注册服务机构:新网数码
有时需把某目录整个重定向到一个二级域名,或者不带www的顶级域名,请求全部重定向到带www的二级域名.?果是Apache,需要配置.htaccess,nginx不支持,需要在配置文件里面使用rewrite指令来实现。
1.顶级域名重定向到www
server {
server_name landui.com;
rewrite ^/(.*)$ http://www.landui.com/$1 permanent;
}
如上配置,所以landui.com的请求?重定向到www.landui.com,301重定向对SEO很有帮助.这个配置大家用的最多。
www二级域名重定向到顶级域名
server {
server_name www.landui.com;
rewrite ^/(.*)$ http://www.landui.com/$1 permanent;
}
顶级域名的权重会比www二级域名的权重高,有些seoer会要求运维一定要把www的请求转到顶级域名,和上面的做法相反。
2.目录重定向
if ( $request_filename ~ nginxtest/ ) {
rewrite ^ http://www.landui.com/nginx/? permanent;
}
目录跳转新域名
if ( $request_filename ~ nginx/ ) {
rewrite ^ http://www.landui.com/? permanent;
}
售前咨询
售后咨询
备案咨询
二维码
TOP