严格落实新冠肺炎疫情防控“九不准”要求,防止和纠正工作中出现的简单化、一刀切、层层加码等问题,国务院联防联控机制有关部门专门开设群众问题反映渠道。
教育部
网址:http://www.moe.gov.cn/jyb_hygq/hygq_tsjb/202207/t20220704_643158.html
电话:010-66092315/3315
工业和信息化部
网址:https://www.miit.gov.cn/gyhxxhb/jgsj/xxtxglj/wzpz/ztzl/txxckzlyqfk/zcgf/index.html
电话:12381
交通运输部
电话:12328,010-65292831
农业农村部
网址:https://www.moa.gov.cn/wsxfbzxx/xfwy/ministerMailBox.html
电话:010-66179655
商务部
网址:http://gzly.mofcom.gov.cn/info/loginOne
电话:010-85093881
文化和旅游部
网址:https://zwgk.mct.gov.cn/zfxxgkml/scgl/202206/t20220624_934098.html
电话:010-65201455
国家卫生健康委
网址:http://www.nhc.gov.cn/nccjmly/denglu.html
海关总署
网址:http://www.customs.gov.cn/eportal/ui?pageId=374003
电话:12360
市场监管总局
网址:https://gkml.samr.gov.cn/nsjg/zfjcj/202206/t20220629_348242.html
国家邮政局
网址:https://spb.gov.cn/gjyzj/jiubz/hdjl_yqfkjbz.shtml
电话:12305
来源:国家卫生健康委员会官网
编辑:杨明昊
严格落实新冠肺炎疫情防控“九不准”要求,防止和纠正工作中出现的简单化、一刀切、层层加码等问题,国务院联防联控机制有关部门专门开设群众问题反映渠道。
教育部
网址:http://www.moe.gov.cn/jyb_hygq/hygq_tsjb/202207/t20220704_643158.html
电话:010-66092315/3315
工业和信息化部
网址:https://www.miit.gov.cn/gyhxxhb/jgsj/xxtxglj/wzpz/ztzl/txxckzlyqfk/zcgf/index.html
电话:12381
交通运输部
电话:12328,010-65292831
农业农村部
网址:https://www.moa.gov.cn/wsxfbzxx/xfwy/ministerMailBox.html
电话:010-66179655
商务部
网址:http://gzly.mofcom.gov.cn/info/loginOne
电话:010-85093881
文化和旅游部
网址:https://zwgk.mct.gov.cn/zfxxgkml/scgl/202206/t20220624_934098.html
电话:010-65201455
国家卫生健康委
网址:http://www.nhc.gov.cn/nccjmly/denglu.html
海关总署
网址:http://www.customs.gov.cn/eportal/ui?pageId=374003
电话:12360
市场监管总局
网址:https://gkml.samr.gov.cn/nsjg/zfjcj/202206/t20220629_348242.html
国家邮政局
网址:https://spb.gov.cn/gjyzj/jiubz/hdjl_yqfkjbz.shtml
电话:12305
来源: 国家卫健委网站
1、保持简洁优雅的 URL。
保持网站首页简洁的域名格式。
2、搜索引擎友好,避免重复页面。
虽然大部分网站首页都是 index.html,但搜索引擎并不会将www.fuyeor.com/和www.fuyeor.com/index.html视为同一个页面,而是当作两个网址处理。
1、设置网站目录文件默认值
从 Apache 服务器的配置文件 /conf/httpd.conf 中的 DirectoryIndex 修改网站默认首页。
<IfModule dir_module>
DirectoryIndex index.html index.php
</IfModule>
确保www.fuyeor.com/和www.fuyeor.com/index.html都能正常访问。
2、在首页文件 index.html 中设置跳转
在首页文件 index.html 中通过 JavaScript 设置跳转,跳转至不带 index.html 的域名。
<script>
if(window.location.href=='https://www.fuyeor.com/index.html'){
window.location.href="https://www.fuyeor.com/";
}
</script>
3、设置 rel=canonical <link> 标记,避免在搜索引擎出现 index.html
将具有 rel="canonical" 属性的 <link> 元素添加到带 index.html 的网页 <head> 部分中,并使其指向规范网页(主域名)。
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5, viewport-fit=cover">
...
<link rel="canonical" href="https://www.fuyeor.com" />
...
</head>
这样搜索引擎即使发现了 index.html 的网址,也不会收录。
*请认真填写需求信息,我们会在24小时内与您取得联系。