将index.php重命名为其他人,然后在WordPress中如何操作?

时间:2013-03-26 13:50:10

标签: wordpress

现在,我将index.php重命名为home.php,当我点击类别链接时,它将全部由example.com/index.php处理。所有链接都不起作用。怎么纠正呢?如何让home.php处理所有页面。谢谢你

1 个答案:

答案 0 :(得分:2)

我认为您需要修改根目录中的.htaccess文件。它有一个重写规则来指向index.php的所有内容。将其更改为指向home.php。

类似的东西:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /home.php [L]
</IfModule>

选项All -Indexes