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