web-dev-qa-db-ja.com

ホームページから投稿リストページにリダクションしますか?

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]

しかし、うまくいきません。

WordPressによって.htaccessに入れられたいくつかのリダイレクトもあります

RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

それらは現状のままであるべきだと思いますか?

1
jodaka

これが私のやり方です。

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

  1. 上記のプラグインをインストール
  2. ページを作成
  3. カスタムフィールドを追加します。 http://theprimarkonlineshop.com/category/blog の値のリダイレクト
  4. 作成したページをサイトのホームページに設定します。
1
Brady

wp_redirect を試すこともできます。

<?php wp_redirect( 'http://theprimarkonlineshop.com/category/blog/', 301 ); exit; ?>

それをカスタムテンプレートに入れてそれをあなたのhomepage.phpファイルとして設定するか、あなたの設定からこれを行うこともできます。

1
Philip