I am trying to implement a simple redirect on a WordPress site.
Here’s the line in question:
Redirect 301 http://bureaudebureau.com http://bureaudebureau.com/category/furniture
Here is the entire .htaccess file I am using:
AddHandler php-stable .php
Redirect 301 http://bureaudebureau.com http://bureaudebureau.com/category/furniture
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
If you’re sure, then you can replace your current code by this one in your htaccess