当前位置:首页 > PHP教程 > php应用 > 列表

PHP每15分钟自动更新网站地图(减少服务器消耗)

发布:smiling 来源: PHP粉丝网  添加日期:2022-05-23 09:00:04 浏览: 评论:0 

最近在弄一个短网址,自己写的代码。锻炼一下自己。在做html网站地图这块,想着把所有生成的短连接都展示出来,方便收录。就写了一个sitemap.php,后来发现,如果以后人流量大或者数据过多的话,服务器负担就会特别重,假如有10w条数据,每个人访问的时候都会从数据库索引这10w条数据,一秒钟有100个人访问,服务器根本负担不过来。然后就萌生了生成html地图这个想法。

由于学艺不精,可能思路上有些不对的。希望有更好思路能够批评指正!

原理:

需要三个文件:

sitemap.html (这个文件为系统自动生成,sitemap.php的克隆版)

sitemap.php (主要页面,决定页面的样式等,完全=sitemap.html)

timeSitemap.php (为更新程序,生成html页面。可在监控宝设置监控。)

sitemap.php为页面文件,sitemap.html为sitemap.php的克隆版,监控宝设置定时监控timeSitemap.php文件,实现每15分钟生成网站地图,当然,频率是按照监控宝的监控频率来决定,如果地图生成失败,会返回404,监控宝会报警。sitemap.xml同理

下面共享代码(用使用的mysql查询等类为自己简单封装的数据库类,这里就不展示了):

sitemap.php

  1. <?php 
  2.  
  3. /* 
  4.  
  5. @   sitemap html版地图 
  6.  
  7. */ 
  8.  
  9. // 引入数据库操作类 
  10.  
  11. require_once 'c/class.class.php'
  12.  
  13. // 引入系统参数 
  14.  
  15. $config = require 'c/config.php'
  16.  
  17. ?> 
  18.  
  19. <html> 
  20.  
  21. <head> 
  22.  
  23. <meta charset="utf-8"
  24.  
  25. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"
  26.  
  27. <title>网站地图 - <?php echo $config['web_title']; ?></title> 
  28.  
  29. <meta name="keywords" content="<?php echo $config['web_keywords'];?>"
  30.  
  31. <meta name="description" content="<?php echo $config['web_description']; ?>"
  32.  
  33. <link href="<?php //echo $config['web_url'];?>/css/bootstrap.min.css" rel='stylesheet' type='text/css'
  34.  
  35. <!-- 
  36.  
  37. <link href="<?php //echo $config['web_url'];?>/css/style.css" rel='stylesheet' type='text/css'
  38.  
  39. <link href="<?php //echo $config['web_url'];?>/css/media.css" rel='stylesheet' type='text/css'
  40.  
  41. <script src="<?php //echo $config['web_url'];?>/css/jquery-3.1.1.min.js"></script> 
  42.  
  43. --> 
  44.  
  45. <link type="favicon" rel="shortcut icon" href="<?php //echo $config['web_url'];?>/favicon.ico" /> 
  46.  
  47. <link type="favicon" rel="icon" href="<?php //echo $config['web_url'];?>/favicon.ico" /> 
  48.  
  49. <style> 
  50.  
  51. .table tr { 
  52.  
  53. text-align: center; 
  54.  
  55.  
  56. a { 
  57.  
  58. display: inline-block; 
  59.  
  60. padding: 10px; 
  61.  
  62.  
  63. </style> 
  64.  
  65. </head> 
  66.  
  67. <body> 
  68.  
  69. <!--先提示--> 
  70.  
  71. <?php 
  72.  
  73. // <!-- 取出所有短网址 --> 
  74.  
  75. $cons = new con(); 
  76.  
  77. $consSql = "select * from urls order by id desc"
  78.  
  79. $consQuery = $cons->query($consSql); 
  80.  
  81. // >> 总数量 
  82.  
  83. $consNum = mysql_num_rows($consQuery); 
  84.  
  85. ?> 
  86.  
  87. <div class="container"
  88.  
  89. <!--<table class="table table-striped table-bordered table-hover table-condensed">--> 
  90.  
  91. <hr> 
  92.  
  93. <div style='text-align:center;height:35px;line-height:35px;font-weight:bold;'
  94.  
  95. 共<?php echo $consNum; ?>条数据</div><div style='text-align:center;'>本页面每15分钟更新一次 
  96.  
  97. </div> 
  98.  
  99. </hr> 
  100.  
  101. 本站链接:<a href="http://bba.fun">bba.fun短网址</a><a href="http://bba.fun/page/api">api接口</a><a href="http://bba.fun/sitemap.html">网站地图</a> 
  102.  
  103. <br> 
  104.  
  105. 生成链接: 
  106.  
  107. <br> 
  108.  
  109. <?php 
  110.  
  111. // >> 显示总数量 
  112.  
  113. echo ""
  114.  
  115. // >> 开始循环取出 
  116.  
  117. while($rows = mysql_fetch_array($consQuery)){ 
  118.  
  119. echo "<a href='{$rows['short_url']}' target='_blank' rel='external nofollow'>".$rows['short_url']."</a>"
  120.  
  121.  
  122. ?> 
  123.  
  124. <!--</table>--> 
  125.  
  126. <div style='text-align:center;height:35px;line-height:35px;font-weight:bold;'>2017© <a href="<?php echo $config['web_url'];?>"><?php echo $config['web_title']; ?></a></div><hr> 
  127.  
  128. </div> 
  129.  
  130. </body> 
  131.  
  132. </html> 

timeSitemap.php

  1. <?php 
  2.  
  3. /* 
  4.  
  5. @   定时更新网站地图 
  6.  
  7. */ 
  8.  
  9. // 定义获取的url 
  10.  
  11. $url = "http://www.phpfensi.com/sitemap.php"
  12.  
  13. // 定网站地图名字 
  14.  
  15. $name = "sitemap.html"
  16.  
  17. // 获取源码 
  18.  
  19. $html = file_get_contents($url); 
  20.  
  21. // 写入html 
  22.  
  23. $write = file_put_contents($name,$html); 
  24.  
  25. if($write){ 
  26.  
  27. header("HTTP/1.1 200"); 
  28.  
  29. }else { 
  30.  
  31. header("HTTP/1.1 404"); 
  32.  
  33.  
  34. ?>

Tags: PHP自动更新网站地图

分享到: