我有一个与WordPress相关联的页面(在CodeIgniter中完成)。 博客改变了地址:
从example.com/wp
到example.com/blog
我希望旧地址中的其他帖子可能会显示在新地址中,例如:example.com/blog?p=32
我创建了一个控制器:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
require_once LIBRARIES.'functions.inc';
class Wp extends CI_Controller {
public function index()
{
$this->load->helper('url');
redirect("/blog", "refresh");
}
public function _remap($method) {
Remap($this, $method);
}
}
但是不起作用。 可能有什么不对?