I want to redirect http://www.themehero.com/css-design to http://www.themehero.com/category/css/ page. Currently i have added the following in the .htaccess but it doesn't work Redirect permanent /http://www.themehero.com/css-design http://www.themehero.com/category/css/ Code (markup): .htacess in full <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> Redirect permanent http://www.themehero.com/css-design http://www.themehero.com/category/css/ # END WordPress Code (markup): Please help me thankyou