有一个站点位于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]
 我想他们应该保持原样?