从主页重定向到发布列表页面?

时间:2011-05-16 作者:jodaka

有一个站点位于http://theprimarkonlineshop.com 我想重定向到的http://theprimarkonlineshop.com/category/blog 当用户进入站点时。我试过一些东西,比如

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} ^/$ [OR]
RewriteCond %{REQUEST_FILENAME} ^$ 
RewriteRule . http://theprimarkonlineshop.com/category/blog/ [R=301,L]
但它不起作用。

还有一些重定向被放入.htaccess 按WordPress

RewriteBase /
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
我想他们应该保持原样?

2 个回复
最合适的回答,由SO网友:Scott 整理而成

以下是我的做法:

http://wordpress.org/extend/plugins/redirect/

  1. 安装上述插件创建页面添加自定义字段:重定向值http://theprimarkonlineshop.com/category/blog

SO网友:Philip

您也可以尝试wp_redirect:

<?php wp_redirect( \'http://theprimarkonlineshop.com/category/blog/\', 301 ); exit; ?>
将其放在自定义模板中,并将其设置为您的主页。php文件,或者您也可以从设置中执行此操作。

结束

相关推荐

WordPress 2.9.2中使用WP Query时出现“ApacheHTTP服务已停止工作”

当我的脚本运行WP 2.9.2中下面的第4行时,它会导致我的web应用抛出“Apache HTTP服务已停止工作”错误$cat=get_cat_ID(\'top-menu\'); $catHidden=get_cat_ID(\'hidden\'); $myqueryCurrent = new WP_Query(); $myqueryCurrent->query(array(\'cat\'=>\"$cat,-$catHidden\",\'post__not_in\'=&g