设置 WordPress 引导页

  1. 到后台=>设置=>固定链接(Permalink Settings),只要不是默认项就行
  2. 修改 .htaccess 文件,新增代码如下:
    <IfModule dir_module>
    DirectoryIndex index.html index.php
    </IfModule>
  3. 修改 wp-includes/rewrite.php,将 var $index=’index.php’; 改为 var $index=’home.php’;
  4. 重命名 /index.php 为 /home.php
  5. 将 index.html 做引导页即可

发表评论