PHP生成首页html静态文件

LsevenTT站群哥 PHP相关PHP生成首页html静态文件已关闭评论4,278阅读模式

 

PHP生成首页html静态文件

PHP生成首页静态文件代码

分享一个 PHP生成静态首页index.html的代码

 

<?php
$baseCmsUrl = "http://www.LsevenTT.com";
//你网站的根目录不要加反斜杠/
$dmPageName = "index.php";
$stPageName = "index.html";
$tureStFile = dirname(__FILE__) . '/' . $stPageName;
$body = file_get_contents($baseCmsUrl . '/' . $dmPageName);
$fp = fopen($tureStFile, 'w');
fwrite($fp, $body);
fclose($fp);
header("Location:{$baseCmsUrl}/index.html");
//生成后返回静态首页
?>

 

 

 

文章末尾固定信息

weinxin
我的微信
我的微信
微信扫一扫
 
LsevenTT站群哥
  • 本文由 LsevenTT站群哥 发表于 2017年11月30日 19:41:08
  • 转载请务必保留本文链接:https://lseventt.net/archives/1467.html