文件夹WordPress页面重定向

时间:2016-02-25 作者:Leo Armentano

我把我的wordpress放在一个文件夹里,比如说/blog。我希望能够将用户虚拟地重定向到某个页面,以便访问一些特定的URL。比方说:我有我的术语页面,所以它位于/博客/术语上。我希望直接访问/术语的用户可以看到该页面,但不更改url。这是我目前的规则。htaccess重定向到博客

RewriteRule ^blog - [NC,L]
这是/博客文件夹。htaccess:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
我在htaccess上尝试过类似的事情,但没有成功。

RewriteRule ^terms$ /blog/terms [NC,L]
我总是得到一个404,有时来自我的主域名,有时是“哎呀!那个页面找不到。”来自wordpress

1 个回复
SO网友:Leo Armentano

经过多次测试,终于找到了解决方法:

RewriteRule ^terms /blog/index.php/termspage [NC,L]