我正在处理的wordpress网站以前曾托管过windows,无法使用htaccess来隐藏index.php。所有200个左右的新闻都被搜索引擎索引,如
sitename.com/index.php/archives/5574
该网站现在正在转移到Linux,新闻项目现在就像
sitename.com/big-story-of-the-week
如果我按照建议更改永久链接结构,有什么方法可以让网站仍然路由旧的index.php / archive链接?
答案 0 :(得分:0)
在.htaccess文件中,您可以使用网站网址结构添加以下代码:
重定向301 index.php / archives / 5574 http://sitename.com/big-story-of-the-week
必须为每个页面完成此操作。
此处有更多信息:http://wp-mix.com/redirect-urls-htaccess/
(务必在更改之前备份.htaccess)