There is a site at http://theprimarkonlineshop.com that I want to be redirected to http://theprimarkonlineshop.com/category/blog when a user enters the site.
I've tried some stuff like
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} ^/$ [OR]
RewriteCond %{REQUEST_FILENAME} ^$
RewriteRule . http://theprimarkonlineshop.com/category/blog/ [R=301,L]
but it doesn't work.
Also there are some redirections that were put into .htaccess by WordPress
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
I guess they should remain as is?
