您现在的位置是:首页 > 教程 > WordPress教程WordPress教程
WordPress博客首页怎么实现静态
代真2023-06-19 00:11:41WordPress教程已有人查阅
导读WordPress博客首页静态的方法如下:首先新建一个php文件,文字可以自取,自己要记住,比如index-html.php,
WordPress博客首页静态的方法如下:首先新建一个php文件,文字可以自取,自己要记住,比如index-html.php,然后复制以下代码:
<?php
$baseCmsUrl = "https:// .ziyouwu.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);
}
if(file_exists("index.html"))
{
unlink("index.html");
}
$baseCmsUrl = "https:// .ziyouwu.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");
?>
将文件上传到网站根目录后直接打开浏览器访问该文件即可为wordpress首页生成html。
生成index.html文件后,我们要注意的是我们直接访问自己的域名和访问域名+index.html都会显示首页这样的会搜索引擎会认为你在制造重复页面,会给网站带来 的负面影响,下面给出解决此问题的方法(访问index.html301转跳到/,即去除掉首页url中的index.html)
Apache下301跳转代码
RewriteEngine On
RewriteBase /
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9} /index.(php|html|htm) HTTP/
RewriteRule ^index.(php|html|htm)$ http:// .ziyouwu.com/ [R=301,L]
nginx下的解决方法
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.html/$1 last;
}
}
这样首页静态就可以 基本使用了!
本文标签:
很赞哦! ()
相关文章
随机图文
-
wordpress恢复默认设置的方法
在进行WordPress测试的过程中,如果你想将当前的WordPress恢复到全新安装的状态,是否非得重新安装WordPress?其实,使用 WordPress Reset 就可以一键搞定! -
使用代理服务器解决WordPress升级慢的方法
更新WordPress版本有两种方法,在后台点击自动升级或者手动下载新的版本替换旧的。为了方便,一般选择前者自动升级。 -
WordPress主题制作之怎么制作comments.php文件
今天我们来制作评论主题的评论模块。在主题目录Aurelius下新建comments.php,在single.php剪切以下代码,粘贴到comments.php: -
wordpress模板安装使用方法介绍
wordpress主题模板怎么用,通过后台上传安装主题,通过FTP上传安装主题模板,主题安装还是上传,都需要压缩成服务器支持的格式
留言与评论 (共有 条评论) |