热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

php强制用户转向www域名办法php强制转向域名

php教程|php手册php,强制,转向,php教程-php手册php强制用户转向www域名的方法,php强制转向域名matlab神经网络43个案例分析源码,vscode创建前后端

php教程|php手册php强制用户转向www域名办法php强制转向域名
php,强制,转向,
php教程-php手册
php强制用户转向www域名的方法,php强制转向域名
matlab神经网络43个案例分析源码,vscode创建前后端项目,ubuntu选择安装,宝塔tomcat部署war,爬虫调度框架,php框架目录结构,宁波seo优化厂家直销,discuz含门户网站模板宽屏,打开siri成了输入的模板lzw

有时候网站的www域名和非www域名都能访问网站,但是这样不利于搜索引擎的收录,会分散网页的权重,所以希望用户访问非www的域名时通过301永久重定向到www域名,例如用户访问jb51.net会直接转向www.liuzhongwei.com,本php代码考虑了无法通过head重定向的情况,会在页面上输出链接,让用户点击。

政工网源码,ubuntu卸载分区失败,网络爬虫技术总结,php serilize,高萌seolzw

// Install info.:// Copy and paste these lines into your default index.php or// the file that get's called if a visitor comes on your // website...// read the host from the server environment$host = $_SERVER["HTTP_HOST"];// fix host name - we never now... ;-)$host = strtolower($host);$host = trim($host);// This is important: // Webbrowsers like Firefox are doing their request without// the port number like "www.liuzhongwei.com" but some other // applications send host names like "www.liuzhongwei.com:80" $host = str_replace(':80', '', $host);$host = trim($host);// if the host is not starting with www. redirect the // user to the same URL but with www :-)if ($host != 'www.liuzhongwei.com'){ // You an also change the "!=" to "==", if you want to force // the user to use the domain name without the www. // send status header, so that search engines or other services // detect that this is a permanent redirect and not a temporary header('HTTP/1.1 301 Moved Permanently'); // read the URL the user requested: $url = isset($_SERVER["REQUEST_URI"]) ? $_SERVER["REQUEST_URI"] : ''; // redirect the user to the new destination: header('Location: http://www.liuzhongwei.com' . $url); // Convert "special" chars -- cause we never now... ;-) $url = htmlspecialchars($url); // "fallback" link, if the browser is not supporting header redirects print 'Please click here'; // stop the script execution here exit;}// If the domain is www.liuzhongwei.com then go on with your PHP code // of with your website...// BTW: You need to replace jb51.net trough your own domain :-D

财务软件源码,ubuntu 临时设置网关,Tomcat8状态停止,爬虫显示403,php方法和变量,康平正规抖音seo优化价格表格lzw

推荐阅读
author-avatar
邵子轩一号
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有